Created
November 5, 2019 18:43
-
-
Save pdcmoreira/6a25d907c9726aaf3e762924f1b565b4 to your computer and use it in GitHub Desktop.
Toggle underline style on action icon
This file contains 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
.action { | |
position: relative; | |
height: 30px; | |
&.toggled { | |
&::after { | |
content: ''; | |
position: absolute; | |
bottom: -4px; | |
left: 50%; | |
margin-left: -15px; | |
width: 30px; | |
border-bottom: 2px solid #1fa3fc; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment