Skip to content

Commit f03c228

Browse files
committed
quick css fix
1 parent ca8498b commit f03c228

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

css/main.css

+16
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,22 @@ body {
274274
color: #ffffff;
275275
}
276276

277+
.themeSelectors {
278+
border-radius: 3px;
279+
background: #22a5df;
280+
padding-right: 10px;
281+
padding-left: 10px;
282+
padding-top: 5px;
283+
padding-bottom: 5px;
284+
height: 17px;
285+
margin-top: 32px;
286+
margin-right: 8px;
287+
text-decoration: none;
288+
text-align: center;
289+
float: left;
290+
color: #ffffff;
291+
}
292+
277293
.material-icons.md-18 {
278294
font-size: 0.9rem;
279295
vertical-align: middle;

javascript/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ function makeSettingsPage() {
365365
document.getElementById('button_div').innerHTML = '';
366366
for (var i = 0; i < keys.length; i = i+1) {
367367
currentButton = document.createElement('a');
368-
currentButton.className = 'squaresNew';
368+
currentButton.className = 'themeSelectors';
369369
currentButton.style.cursor = 'pointer';
370370
currentButton.style.marginTop = '5px';
371371
currentButton.style.paddingBottom = '10px';

0 commit comments

Comments
 (0)