Skip to content

Instantly share code, notes, and snippets.

@Hansanghyeon
Created June 19, 2021 09:33
Show Gist options
  • Save Hansanghyeon/12b45f4761dc606a5bd146eacc7c0ac7 to your computer and use it in GitHub Desktop.
Save Hansanghyeon/12b45f4761dc606a5bd146eacc7c0ac7 to your computer and use it in GitHub Desktop.
[scss] textDecoration
@mixin textDecoration($bg: var(--bg0), $color: currentColor, $space: 2px) {
// box-shadow & text-shdaow를 이용한 text-decoration 구성
// 참고: https://codepen.io/999hyeon/pen/QWpVOgL
text-shadow: -#{$space} -#{$space} #{$bg}, -#{$space} #{$space} #{$bg},
#{$space} -#{$space} #{$bg}, #{$space} #{$space} #{$bg};
box-shadow: inset 0 -0.05em #{$bg}, inset 0 -0.1em #{$color};
display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment