From 6bcc42d8b67df9e09b36a5cabe7eed45221c9051 Mon Sep 17 00:00:00 2001 From: Blallo Date: Tue, 14 Mar 2023 00:08:26 +0100 Subject: [PATCH] LogViewer quirks --- ui/src/features/radio/LogViewer.module.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/features/radio/LogViewer.module.scss b/ui/src/features/radio/LogViewer.module.scss index b5f502a..84f174f 100644 --- a/ui/src/features/radio/LogViewer.module.scss +++ b/ui/src/features/radio/LogViewer.module.scss @@ -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; } }