forecast/components/UnitSwitch.module.css
2021-09-22 16:35:41 +03:00

23 lines
306 B
CSS

.wrapper {
text-align: right;
}
.switch {
margin: 0 10px;
cursor: pointer;
display: inline;
}
@media only screen and (max-width: 475px) {
.wrapper {
text-align: center;
}
}
@media only screen and (max-width: 335px) {
.wrapper {
display: grid;
grid-template-columns: 1fr;
}
}