Skip to content

Instantly share code, notes, and snippets.

@octoxan
octoxan / _bigger-grid.scss
Created January 11, 2017 21:02
Fix for Bootstrap 4's grid system not having actual large screen size breakpoints
// Add two new breakpoints because Bootstrap is stupid by default
$grid-breakpoints: (
xs : 0,
sm : 576px,
md : 768px,
lg : 992px,
xl : 1200px,
xxl : 1400px,
xxxl: 1800px
) !default;