chore: remove deprecated clear= and use clear layout helpers (#2822)

* define clear layout helpers

* replace deprecated clear= with helper
This commit is contained in:
Eric Jimenez
2016-11-17 18:02:32 -05:00
committed by Kathy Walrath
parent bde8fe1478
commit e59cd9abc9
5 changed files with 36 additions and 24 deletions
+12
View File
@@ -296,3 +296,15 @@ button.verbose.on {display: none}
display: flex;
flex-wrap: wrap;
}
.l-clear-left {
clear: left;
}
.l-clear-right {
clear: right;
}
.l-clear-both {
clear: both;
}