18 lines
287 B
SCSS
18 lines
287 B
SCSS
@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;
|
|
}
|
|
}
|
|
}
|