From 1c8021964bf62aca233f55b8f4ef0a8516494c6a Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Mon, 3 Jan 2022 09:30:51 +0000 Subject: [PATCH] :adhesive_bandage: Fix capitalization in weather widget (#402) --- src/components/Widgets/Weather.vue | 64 +++++++--------------- src/components/Widgets/WeatherForecast.vue | 62 +++++++-------------- 2 files changed, 38 insertions(+), 88 deletions(-) diff --git a/src/components/Widgets/Weather.vue b/src/components/Widgets/Weather.vue index a2928d4b..364e1bb4 100644 --- a/src/components/Widgets/Weather.vue +++ b/src/components/Widgets/Weather.vue @@ -23,7 +23,6 @@ @@ -218,6 +189,9 @@ export default { &:not(:last-child) { border-bottom: 1px dashed var(--widget-text-color); } + span.lbl { + text-transform: capitalize; + } } } } diff --git a/src/components/Widgets/WeatherForecast.vue b/src/components/Widgets/WeatherForecast.vue index 83f883f8..3f77e4ea 100644 --- a/src/components/Widgets/WeatherForecast.vue +++ b/src/components/Widgets/WeatherForecast.vue @@ -31,8 +31,8 @@ @@ -266,6 +239,9 @@ export default { margin: 0.1rem 0.5rem; padding: 0.1rem 0; color: var(--widget-text-color); + span.lbl { + text-transform: capitalize; + } &:not(:last-child) { border-bottom: 1px dashed var(--widget-text-color); }