aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/less/layout/grid.less
blob: 02ff28c84d78fa9584ac852c9b83362b40567885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ==========================================================================
// Super basic grid
// ==========================================================================

.grid {
    margin: 0 auto;
    padding: @spacing-base;

    @media @mq-md {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: @container-max-width;

        > * {
            flex: 1;
        }
    }
}