Created
June 25, 2017 14:21
-
-
Save LoyEgor/b2e3d056529edc098a44bf01b17d8d21 to your computer and use it in GitHub Desktop.
style for close icon
This file contains 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
&:after, | |
&:before { | |
content: ''; | |
@s: 2px; | |
width: 100%; | |
height: @s; | |
background-color: @brandcol1; | |
display: block; | |
position: absolute; | |
left: 0; | |
top: 50%; | |
margin-top: -@s/2; | |
} | |
&:before { | |
transform: rotate(45deg); | |
} | |
&:after { | |
transform: rotate(-45deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment