# ghostkit/3.7.2/gutenberg/bootstrap/variables.scss

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.7.2. 35 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.7.2/code/gutenberg/bootstrap/variables.scss
- Raw: https://pluginprobe.com/plugins/ghostkit/3.7.2/raw/gutenberg/bootstrap/variables.scss
- Modified: 2024-02-18T18:40:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.7.2/code/gutenberg/bootstrap/variables.scss#L10-L20`.

```scss
@use "sass:map";

// Grid breakpoints
// Define the minimum dimensions at which your layout will change,
// adapting to different screen sizes, for use in media queries.

$grid-breakpoints: (
	xs: 0,
	xl: $media-lg,
	lg: $media-md,
	md: $media-sm,
	sm: $media-xs,
) !default;

@include _assert-descending($grid-breakpoints, "$grid-breakpoints");
@include _assert-starts-at-zero($grid-breakpoints);

// Grid containers
// Define the maximum width of `.container` for different screen sizes.

$container-max-widths: (
	sm: 540px,
	md: 720px,
	lg: 960px,
	xl: 1140px
) !default;

@include _assert-ascending($container-max-widths, "$container-max-widths");

// Grid columns
// Set the number of columns and specify the width of the gutters.

$grid-columns:      12 !default;
$grid-gutter-width: map.get($grid-gaps, md) !default;

```
