Skip to content

Instantly share code, notes, and snippets.

@Ankhena
Last active March 6, 2023 19:53
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 Ankhena/13c6fb690f94da738173f4e05112c582 to your computer and use it in GitHub Desktop.
Save Ankhena/13c6fb690f94da738173f4e05112c582 to your computer and use it in GitHub Desktop.
Scroll search outline
* {
--out-width: 2px;
outline: var(--out-width) solid red;
outline-offset: calc(0px - var(--out-width));
}
*::before, *::after {
outline: var(--out-width) solid lime;
outline-offset: calc(0px - var(--out-width));
}
* {
--out-width: 2px;
outline: var(--out-width) solid red;
outline-offset: calc(0px - var(--out-width));
&::before, &::after {
outline: var(--out-width) solid lime;
outline-offset: calc(0px - var(--out-width));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment