Extract foundry highlight text shadow to mixin
This commit is contained in:
parent
65a79a351d
commit
4b0510c8a6
2 changed files with 7 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
||||||
|
@use "../utils/mixins";
|
||||||
|
|
||||||
.ds4-check {
|
.ds4-check {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-shadow: 0 0 10px red;
|
@include mixins.foundry-highlight-text-shadow;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,3 +30,7 @@
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin foundry-highlight-text-shadow {
|
||||||
|
text-shadow: 0 0 10px red;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue