Created
June 19, 2021 09:33
-
-
Save Hansanghyeon/12b45f4761dc606a5bd146eacc7c0ac7 to your computer and use it in GitHub Desktop.
[scss] textDecoration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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