From 7fcd87b1016129010e6b0b8da939867d700b6fe0 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 24 Nov 2021 16:17:09 -0600 Subject: [PATCH] Font size changes --- src/app/app.component.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/app/app.component.scss b/src/app/app.component.scss index a2bf56b..f853330 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -8,6 +8,26 @@ padding: 0; } +@media (max-width: 350px) { + .timezone { + font-size: 1.0em; + } + + .time { + font-size: 0.5em + } +} + +@media (min-width:350px) and (max-width: 500px) { + .timezone { + font-size: 1.5em; + } + + .time { + font-size: 1.0em + } +} + .timezone { font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; color: whitesmoke;