gaf-mobile
Version:
GAF mobile Web site
31 lines (25 loc) • 619 B
text/less
@import (reference) '../libs/mixins';
// The Worlds Simplest Grid System
// Note: responsive columns may need the first column width overridden to shrink it to contents.
// Tried to use display: flex; here but Android + forms elements had some issues.
.make-row {
display: block;
width: 100%;
.clearfix;
&.make-row-responsive {
display: table;
.make-col {
display: table-cell;
width: auto;
float: none;
}
}
}
.make-col {
width: 50%;
float: left;
padding-right: 10px;
&:last-of-type {
padding-right: 0;
}
}