CSS: Fix clearfix mixin

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-25 16:16:42 +02:00
parent 98c0d7beec
commit 1da28ba43c

View File

@ -17,10 +17,12 @@
}
}
.clearfix:after {
clear: both;
content: "";
display: table;
.clearfix {
&:after {
content: "";
clear: both;
display: table;
}
}
.name-value-table {