Created
March 1, 2017 15:14
-
-
Save adamdehaven/2c6784e2496ec29d6526596d1af3a69e to your computer and use it in GitHub Desktop.
Create an arrow in Sass and place on element.
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
// 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