PluginProbe
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress / 5.4.0
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress v5.4.0
5.6.11 5.6.10 5.6.9 5.6.8 5.6.7 5.6.6 5.6.5 5.6.4 5.6.3 5.6.2 5.6.1 5.6.0 5.5.2 5.5.1 5.5.0 5.4.2 trunk 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 All 48 releases
latepoint / lib / assets / stylesheets / admin / _grid_variables.scss
_grid_variables.scss
42 lines 864 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 // GRID
3
4 $enable-grid-classes: true !default;
5
6 // Grid breakpoints
7 //
8 // Define the minimum dimensions at which your layout will change,
9 // adapting to different screen sizes, for use in media queries.
10
11 $grid-breakpoints: (
12 xs: 0,
13 sm: 576px,
14 md: 768px,
15 lg: 992px,
16 xl: 1200px
17 ) !default;
18
19 @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
20 @include _assert-starts-at-zero($grid-breakpoints);
21
22
23 // Grid containers
24 //
25 // Define the maximum width of `.container` for different screen sizes.
26
27 $container-max-widths: (
28 sm: 540px,
29 md: 720px,
30 lg: 960px,
31 xl: 1140px
32 ) !default;
33
34 @include _assert-ascending($container-max-widths, "$container-max-widths");
35
36
37 // Grid columns
38 //
39 // Set the number of columns and specify the width of the gutters.
40
41 $grid-columns: 12 !default;
42 $grid-gutter-width: 16px !default;