aex/style/_mixins.scss
2025-09-20 11:06:55 +03:00

19 lines
340 B
SCSS

@mixin heading {
font-family: "Neusa Next Pro";
font-weight: 500;
/* font-family: "Galderglynn Titling"; */
}
@mixin button {
@include heading;
font-weight: 900;
background: crimson;
text-align: center;
color: white;
&:hover {
filter: hue-rotate(40deg);
transition: filter .2s;
}
}