feat: improve global responsivity

This commit is contained in:
Alexis Fourmaux 2025-05-17 00:37:16 +02:00
parent 4a5ee3cd67
commit 9d15a6ebd6
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;
}
}
}