mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Use rem for the container-max-widths
This commit is contained in:
parent
b222ba04bf
commit
06235fb952
1 changed files with 7 additions and 7 deletions
14
resources/sass/_var.scss
vendored
14
resources/sass/_var.scss
vendored
|
@ -15,13 +15,13 @@ $grid-breakpoints: (
|
||||||
);
|
);
|
||||||
|
|
||||||
$container-max-widths: (
|
$container-max-widths: (
|
||||||
sm: 540px,
|
sm: pxrem(540),
|
||||||
md: 720px,
|
md: pxrem(720),
|
||||||
lg: 960px,
|
lg: pxrem(960),
|
||||||
xl: 1140px,
|
xl: pxrem(1140),
|
||||||
xxl: 1540px,
|
xxl: pxrem(1540),
|
||||||
xxxl: 1733px,
|
xxxl: pxrem(1733),
|
||||||
xxxxl: 1925px
|
xxxxl: pxrem(1925)
|
||||||
);
|
);
|
||||||
|
|
||||||
// Colours
|
// Colours
|
||||||
|
|
Loading…
Reference in a new issue