Last active
May 16, 2023 12:03
-
-
Save jaalorsa517/e9690ba4f507805a150ce6514c09dc71 to your computer and use it in GitHub Desktop.
Estilo CSS para hacer el triángulo en los tooltips
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
&::before { | |
content: ''; | |
display: block; | |
position: absolute; | |
left: -40px; | |
top: 5px; | |
border-top: 20px solid transparent; | |
border-right: 20px solid $myBlog-silver; | |
border-left: 20px solid transparent; | |
border-bottom: 20px solid transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment