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:
Charlie Orford 2018-08-02 22:46:19 +01:00 committed by GitHub
parent 6e52cb88ae
commit 53ac1d3379
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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