Skip to content

Instantly share code, notes, and snippets.

@jaalorsa517
Last active May 16, 2023 12:03
Show Gist options
  • Save jaalorsa517/e9690ba4f507805a150ce6514c09dc71 to your computer and use it in GitHub Desktop.
Save jaalorsa517/e9690ba4f507805a150ce6514c09dc71 to your computer and use it in GitHub Desktop.
Estilo CSS para hacer el triángulo en los tooltips
&::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