clearfix for admin contents

This commit is contained in:
Kris Aubuchon 2015-03-23 10:23:42 -04:00
parent 624b0b81b2
commit 84d41be196
2 changed files with 14 additions and 0 deletions

View File

@ -33,6 +33,7 @@ td.flaggers td {
margin-bottom: 50px;
.admin-contents {
padding: 8px;
@include clearfix();
}
.view-options {

View File

@ -33,6 +33,19 @@
// CSS3 properties
// --------------------------------------------------
// Clearfix
@mixin clearfix() {
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}
// Border radius
@mixin border-radius-all($radius) {