aex/style/_mixins.scss

16 lines
271 B
SCSS
Raw Normal View History

@mixin heading {
font-family: "Neusa Next Pro";
}
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;
}
}