feat: improve global responsivity
This commit is contained in:
parent
4a5ee3cd67
commit
9d15a6ebd6
7 changed files with 101 additions and 21 deletions
14
sass/_mixins.scss
Normal file
14
sass/_mixins.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue