Skip to content

Instantly share code, notes, and snippets.

@adamdehaven
Created March 1, 2017 15:14
Show Gist options
  • Save adamdehaven/2c6784e2496ec29d6526596d1af3a69e to your computer and use it in GitHub Desktop.
Save adamdehaven/2c6784e2496ec29d6526596d1af3a69e to your computer and use it in GitHub Desktop.
Create an arrow in Sass and place on element.
// Add dropdown to multiselect elements
.k-multiselect {
position: relative;
&:after {
content: " ";
width: 0;
height: 0;
position: absolute;
top: 45%;
right: 12px;
border: 6px solid transparent;
border-top-color: #444;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment