mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Changed $gap back to 32px
Seems a cleaner way to fix the breakpoints (given sass/elements/container.sass would have been negatively impacted by the earlier commit). Having done a code search for $gap it's not clear what effect changing this value back to 32px (from 64px) has on the rest of bulma (at first glance: nothing).
This commit is contained in:
parent
6e52cb88ae
commit
53ac1d3379
@ -46,16 +46,16 @@ $weight-bold: 700 !default
|
||||
// Responsiveness
|
||||
|
||||
// The container horizontal gap, which acts as the offset for breakpoints
|
||||
$gap: 64px !default
|
||||
$gap: 32px !default
|
||||
// 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16
|
||||
$tablet: 769px !default
|
||||
// 960px container + 4rem
|
||||
$desktop: 960px + $gap !default
|
||||
$desktop: 960px + (2 * $gap) !default
|
||||
// 1152px container + 4rem
|
||||
$widescreen: 1152px + $gap !default
|
||||
$widescreen: 1152px + (2 * $gap) !default
|
||||
$widescreen-enabled: true !default
|
||||
// 1344px container + 4rem
|
||||
$fullhd: 1344px + $gap !default
|
||||
$fullhd: 1344px + (2 * $gap) !default
|
||||
$fullhd-enabled: true !default
|
||||
|
||||
// Miscellaneous
|
||||
|
Loading…
Reference in New Issue
Block a user