feat: improve global responsivity

This commit is contained in:
Ungol 2025-12-23 22:27:52 +01:00
parent c332052930
commit b2286abd85
7 changed files with 101 additions and 21 deletions

14
sass/_mixins.scss Normal file
View file

@ -0,0 +1,14 @@
@mixin link($color, $hover-color: $color, $visited-color: $color) {
a {
color: $color;
text-decoration: none;
&:visited {
color: $visited-color;
}
&:hover {
color: $hover-color;
}
}
}