Skip to content

Commit

Permalink
✨ Improve changelog window
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerluiz committed Aug 25, 2020
1 parent 00aebea commit 8fcea90
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1452,8 +1452,8 @@ function createWindow() {
center: true,
resizable: false,
backgroundColor: '#232323',
width: 460,
height: 650,
width: 600,
height: 580,
autoHideMenuBar: false,
skipTaskbar: false,
webPreferences: {
Expand Down
26 changes: 13 additions & 13 deletions src/pages/changelog/changelog.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@ body {
background-color: #1D1D1D;
color: #fff;

/* padding: 5px; */
padding: 0;
padding: 5px;

width: 100%;
height: 100%;

font-family: sans-serif;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: .95em;
}

#content {
overflow: auto;
width: 99%;
height: 100%;
padding: 4px;
scroll-behavior: smooth;
line-height: 1.3em;
}

#version {
width: 100%;
margin: -15px 0 -15px 0;
text-align: center;
font-size: 1.5em;
}

#content {
overflow: auto;
width: 100%;
padding: 2px;
height: 100%;

scroll-behavior: smooth;
}

::-webkit-scrollbar {
width: 6px;
}
2 changes: 1 addition & 1 deletion src/pages/changelog/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div id="version"></div>
<div id="content">
<div id="version"></div>
<div id="changelog"></div>
</div>

Expand Down

0 comments on commit 8fcea90

Please sign in to comment.