Files
hermit-V2/assets/scss/_predefined.scss
GitHub Action fc359e48aa Inital fix for #74
Signed-off-by: GitHub Action <action@github.com>
2024-08-24 06:46:42 +00:00

18 lines
282 B
SCSS

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