diff --git a/src/features/widgets/weather/components/Expanded.jsx b/src/features/widgets/weather/components/Expanded.jsx
index 18edb242..16309f8b 100644
--- a/src/features/widgets/weather/components/Expanded.jsx
+++ b/src/features/widgets/weather/components/Expanded.jsx
@@ -77,15 +77,17 @@ function Expanded({ state: { weather, icon }, weatherType, variables }) {
return (
anyTooltipEnabled && (
-
+
{weatherType >= 3 && (
{variables.getMessage('widgets.weather.extra_information')}
)}
- {Object.keys(weatherTypes).map((type) => (
-
- ))}
+
+ {Object.keys(weatherTypes).map((type) => (
+
+ ))}
+
)
);
diff --git a/src/features/widgets/weather/weather.scss b/src/features/widgets/weather/weather.scss
index 05616333..b630adfe 100644
--- a/src/features/widgets/weather/weather.scss
+++ b/src/features/widgets/weather/weather.scss
@@ -18,16 +18,6 @@
transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
- .expanded-info {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
-
- .tooltipTitle {
- max-height: 12px;
- }
- }
-
.extra-info {
width: 100%;
font-size: 18px;
@@ -97,12 +87,21 @@
}
}
-.expanded-info {
- display: none;
+.weatherExpandedInfo {
+ padding: 0 25px 25px 25px;
+ text-align: left;
+}
+
+.weatherExpandedInfoItems {
font-size: 18px;
text-transform: capitalize;
gap: 10px;
- padding: 15px 25px 25px 25px;
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+
+ .tooltipTitle {
+ max-height: 12px;
+ }
span {
display: flex;