18 lines
325 B
SCSS
18 lines
325 B
SCSS
@import "npm:@picocss/pico/scss/pico.slim.scss";
|
|
|
|
:root {
|
|
--typography-spacing-vertical: 1rem;
|
|
}
|
|
|
|
.bar_happy {
|
|
padding: 1em;
|
|
margin: 3em;
|
|
background-color: palegreen;
|
|
border-radius: 0.5em;
|
|
}
|
|
@media only screen and (prefers-color-scheme: dark) {
|
|
.bar_happy {
|
|
background-color: #11391F;
|
|
}
|
|
}
|