1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 17:46:39 -04:00

fix SCSS theme mixin when multiple selectors are being set

This commit is contained in:
2021-08-17 10:19:15 -04:00
parent e245205265
commit ed10962814
4 changed files with 50 additions and 11 deletions

View File

@ -1,3 +1,5 @@
@use "../abstracts/themes";
// all code
code {
font-size: 0.925em;
@ -53,13 +55,18 @@ div.highlight-clipboard-enabled {
top: 0;
right: 0;
width: 5.25em;
padding: 0.75em 0.25em;
width: 5.5em;
padding: 0.6em 0.2em;
border: 1px solid;
cursor: pointer;
font-size: 0.9em;
font-size: 0.85em;
font-weight: 500;
line-height: 1;
&:hover {
@include themes.themed(color, "links");
}
}
}