aex/style/_mixins.scss

17 lines
317 B
SCSS
Raw Normal View History

@mixin heading {
font-family: "Neusa Next Pro";
2025-09-13 09:47:31 +00:00
/* font-family: "Galderglynn Titling"; */
}
2025-09-12 07:20:17 +00:00
@mixin button {
@include heading;
font-weight: 900;
background: crimson;
text-align: center;
color: white;
&:hover {
filter: hue-rotate(40deg);
transition: filter .2s;
}
}