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; } }