ws4kp-linhanced/server/styles/scss/_local-forecast.scss
mrkmntal e24ce39c69
Some checks are pending
build-docker / Build Image (push) Waiting to run
Adjust local forecast text for non-standard themes
2026-04-11 12:59:43 -04:00

35 lines
676 B
SCSS

@use 'shared/_colors'as c;
@use 'shared/_utils'as u;
.weather-display .local-forecast {
.container {
position: relative;
top: 15px;
margin: 0px 10px;
box-sizing: border-box;
height: 280px;
overflow: hidden;
}
.forecasts {
position: relative;
}
.forecast {
font-family: 'Star4000';
font-size: 24pt;
text-transform: uppercase;
@include u.text-shadow();
min-height: 280px;
line-height: 40px;
}
}
:root[data-theme]:not([data-theme='default']) .weather-display .local-forecast .forecasts {
margin-top: 16px;
}
:root[data-theme]:not([data-theme='default']) .weather-display .local-forecast .forecast {
font-size: 24px;
padding-right: 20px;
}