Skip to content

Instantly share code, notes, and snippets.

@jda0
Created December 1, 2021 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jda0/5667a65ff18350cc60bd3a52671e23ba to your computer and use it in GitHub Desktop.
Save jda0/5667a65ff18350cc60bd3a52671e23ba to your computer and use it in GitHub Desktop.
&__color-span {
display: inline-block;
padding: 0 2px;
position: relative;
font-weight: var(--TYPOGRAPHY__font-weight-bold);
& > * {
position: relative;
}
&::before {
content: '';
position: absolute;
top: 1px;
left: 0;
width: 100%;
height: calc(100% - 2px);
border-radius: var(--BORDER__radius-m);
}
}
&:hover &__color-span::before {
background-color: currentColor;
filter: invert(100%) brightness(125%) grayscale(100%) contrast(25600%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment