clearfix for admin contents
This commit is contained in:
parent
624b0b81b2
commit
84d41be196
|
@ -33,6 +33,7 @@ td.flaggers td {
|
|||
margin-bottom: 50px;
|
||||
.admin-contents {
|
||||
padding: 8px;
|
||||
@include clearfix();
|
||||
}
|
||||
|
||||
.view-options {
|
||||
|
|
|
@ -33,6 +33,19 @@
|
|||
// CSS3 properties
|
||||
// --------------------------------------------------
|
||||
|
||||
// Clearfix
|
||||
|
||||
@mixin clearfix() {
|
||||
&:before,
|
||||
&:after {
|
||||
content: "";
|
||||
display: table;
|
||||
}
|
||||
&:after {
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
||||
// Border radius
|
||||
|
||||
@mixin border-radius-all($radius) {
|
||||
|
|
Loading…
Reference in New Issue