Last active
October 29, 2017 12:36
-
-
Save carolina-vallejo/127e6ca690f2d3263047f07215ae34d7 to your computer and use it in GitHub Desktop.
clear mixin sass
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
@mixin clean { | |
&::after, | |
&::before { | |
content: ""; | |
display: table; | |
} | |
&::after { | |
clear: both; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment