1
0
mirror of https://github.com/kidoman/embd synced 2025-02-11 05:03:18 +01:00

25 lines
346 B
SCSS
Raw Normal View History

2014-03-31 06:33:08 +05:30
@mixin clearfix() {
*zoom:1;
&:before, &:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}
@mixin mobilefix() {
@include respond(all-phones) {
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
&:last-child {
float: none;
}
}
}