mirror of
https://github.com/mue/mue.git
synced 2026-07-16 21:44:22 +02:00
fix: small weather icons (#361)
Signed-off-by: David Ralph <ohlookitsderpy@protonmail.com> Co-authored-by: alexsparkes <alexsparkes@gmail.com>
This commit is contained in:
@@ -50,9 +50,11 @@ function Expanded({ state, weatherType, variables }) {
|
||||
<span>
|
||||
<WiWindy className="weatherIcon" />
|
||||
{state.weather.wind_speed}
|
||||
<span className="minmax"> m/s</span>{' '}
|
||||
<span className="minmax">m/s</span>{' '}
|
||||
{enabled('windDirection') ? (
|
||||
<div style={{ fontSize: "25px", display: "grid" }}>
|
||||
<WindDirectionIcon className="weatherIcon" degrees={state.weather.wind_degrees} />
|
||||
</div>
|
||||
) : null}
|
||||
</span>
|
||||
</Tooltip>
|
||||
@@ -67,7 +69,7 @@ function Expanded({ state, weatherType, variables }) {
|
||||
<span>
|
||||
<WiBarometer className="weatherIcon" />
|
||||
{state.weather.pressure}
|
||||
<span className="minmax"> hPa</span>
|
||||
<span className="minmax">hPa</span>
|
||||
</span>
|
||||
</Tooltip>
|
||||
) : null}
|
||||
|
||||
@@ -97,7 +97,7 @@
|
||||
span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
@include themed {
|
||||
|
||||
Reference in New Issue
Block a user