From 16dd6299a92e03a1f08aeea56e78d787b5b82fe8 Mon Sep 17 00:00:00 2001 From: Matt Walsh Date: Thu, 4 Aug 2022 13:02:25 -0500 Subject: [PATCH] center hourly forecast --- server/styles/compiled.css | 16 ++++++++-------- server/styles/scss/_hourly.scss | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/server/styles/compiled.css b/server/styles/compiled.css index 74f8bee..30ee37e 100644 --- a/server/styles/compiled.css +++ b/server/styles/compiled.css @@ -124,13 +124,13 @@ text-shadow: 3px 3px 0 black, -1.5px -1.5px 0 black, 0 -1.5px 0 black, 1.5px -1.5px 0 black, 1.5px 0 0 black, 1.5px 1.5px 0 black, 0 1.5px 0 black, -1.5px 1.5px 0 black, -1.5px 0 0 black; } .weather-display .main.hourly.main .column-headers .temp { - left: 370px; + left: 345px; } .weather-display .main.hourly.main .column-headers .like { - left: 450px; + left: 425px; } .weather-display .main.hourly.main .column-headers .wind { - left: 560px; + left: 535px; } .weather-display .main.hourly.main .hourly-lines { min-height: 338px; @@ -154,22 +154,22 @@ top: 8px; } .weather-display .main.hourly.main .hourly-lines .hourly-row .hour { - left: 50px; + left: 25px; } .weather-display .main.hourly.main .hourly-lines .hourly-row .icon { - left: 280px; + left: 255px; width: 70px; text-align: center; top: unset; } .weather-display .main.hourly.main .hourly-lines .hourly-row .temp { - left: 370px; + left: 355px; } .weather-display .main.hourly.main .hourly-lines .hourly-row .like { - left: 450px; + left: 425px; } .weather-display .main.hourly.main .hourly-lines .hourly-row .wind { - left: 530px; + left: 505px; width: 100px; text-align: right; } diff --git a/server/styles/scss/_hourly.scss b/server/styles/scss/_hourly.scss index 705c9a6..4ab639f 100644 --- a/server/styles/scss/_hourly.scss +++ b/server/styles/scss/_hourly.scss @@ -29,15 +29,15 @@ } .temp { - left: 370px; + left: 345px; } .like { - left: 450px; + left: 425px; } .wind { - left: 560px; + left: 535px; } } @@ -66,26 +66,26 @@ } .hour { - left: 50px; + left: 25px; } .icon { - left: 280px; + left: 255px; width: 70px; text-align: center; top: unset; } .temp { - left: 370px; + left: 355px; } .like { - left: 450px; + left: 425px; } .wind { - left: 530px; + left: 505px; width: 100px; text-align: right; }