Extract foundry highlight text shadow to mixin

This commit is contained in:
Johannes Loher 2021-04-20 22:53:25 +02:00
parent 65a79a351d
commit 4b0510c8a6
2 changed files with 7 additions and 1 deletions

View file

@ -1,9 +1,11 @@
@use "../utils/mixins";
.ds4-check {
cursor: pointer;
display: flex;
justify-content: space-between;
&:hover {
text-shadow: 0 0 10px red;
@include mixins.foundry-highlight-text-shadow;
}
}

View file

@ -30,3 +30,7 @@
background-color: transparent;
}
}
@mixin foundry-highlight-text-shadow {
text-shadow: 0 0 10px red;
}