LogViewer quirks

master
blallo 2023-03-14 00:08:26 +01:00
parent c843eebdd7
commit 6bcc42d8b6
Signed by: blallo
GPG Key ID: C530464EEDCF489A
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@ $button-color: #4CAF50;
$button-background: white;
$row-even-background: transparent;
$row-odd-background: rgba(138, 230, 141, 0.7);
$log-rows-font-size: 16px;
.button {
transition-duration: 0.2s;
@ -9,6 +10,7 @@ $row-odd-background: rgba(138, 230, 141, 0.7);
border-radius: 4px;
padding: 10px 24px;
background-color: transparent;
font-size: 18px;
}
.button:hover {
@ -36,9 +38,11 @@ $row-odd-background: rgba(138, 230, 141, 0.7);
.even {
background-color: $row-even-background;
font-size: $log-rows-font-size;
}
.odd {
background-color: $row-odd-background;
font-size: $log-rows-font-size;
}
}