Remove float from .column on screens <=640px

It doesn't make much difference since it has `width: 100%;`, but I needed `<hr>` between columns on <=640px screens, and that `<hr>` is visible only on those screens, removing float allowed me to use margins correctly on `<hr>` element to set some spacing between elements.
This commit is contained in:
Miloš Gavrilović 2014-02-11 18:08:10 +01:00
parent e85d5bdf98
commit dc15c17eb8

View file

@ -435,6 +435,7 @@ img {
.column.one-fourth {
margin: 2em 0 0 0;
width: 100%;
float: none;
}
.column:first-child { margin-top: 0; }