merge scroll-to-top colors

This commit is contained in:
Vano Devium
2024-08-24 11:08:04 +03:00
parent c568b8ff0e
commit 819cebcb12
8 changed files with 123 additions and 119 deletions

17
assets/scss/_mixins.scss Normal file
View File

@ -0,0 +1,17 @@
@mixin dimmed {
opacity: $dimmed-opacity;
}
@mixin aTag {
a {
word-wrap: break-word;
border: none;
box-shadow: inset 0 -4px 0 $theme;
transition-property: box-shadow;
transition-duration: 0.1s;
&:hover {
box-shadow: inset 0 -1em 0 $theme;
}
}
}