mirror of
https://github.com/samsonjs/grid.git
synced 2026-03-25 09:05:51 +00:00
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:
parent
e85d5bdf98
commit
dc15c17eb8
1 changed files with 1 additions and 0 deletions
1
grid.css
1
grid.css
|
|
@ -435,6 +435,7 @@ img {
|
|||
.column.one-fourth {
|
||||
margin: 2em 0 0 0;
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.column:first-child { margin-top: 0; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue