Skip to content

Instantly share code, notes, and snippets.

@lisasy
Created October 28, 2013 21:26
Show Gist options
  • Save lisasy/7205108 to your computer and use it in GitHub Desktop.
Save lisasy/7205108 to your computer and use it in GitHub Desktop.
Custom nub arrow
div.nub {
border-bottom: 16px solid rgb(250,250,250);
border-left: 16px solid transparent;
border-right: 16px solid transparent;
content: '';
height: 0;
margin-left: -16px;
position: absolute;
top: -16px;
width: 0;
&:before {
border-bottom: 17px solid $base-border-color;
border-left: 17px solid transparent;
border-right: 17px solid transparent;
margin-left: -17px;
position: absolute;
top: -17px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment