Skip to content

Instantly share code, notes, and snippets.

@gogachinchaladze
Created February 17, 2016 10:10
Show Gist options
  • Save gogachinchaladze/927413a6bf44593c24c1 to your computer and use it in GitHub Desktop.
Save gogachinchaladze/927413a6bf44593c24c1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
@mixin pseudo-clear(){
content:'';
width:0px;
height:0px;
clear:both;
display: block;
}
.box {
@include border-radius(10px);
&::after{
@include pseudo-clear();
}
}
.box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}
.box::after {
content: '';
width: 0px;
height: 0px;
clear: both;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment