PluginProbe ʕ •ᴥ•ʔ
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress / 5.6.10
Appointment Booking Plugin – LatePoint | Calendar & Scheduling for WordPress v5.6.10
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 5.1.8 5.1.9 5.1.91 5.1.92 5.1.93 5.1.94 5.2.0 5.2.1 5.2.10 5.2.11 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 5.2.9 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1
latepoint / lib / assets / stylesheets / admin / _grid_variables.scss
latepoint / lib / assets / stylesheets / admin Last commit date
_activities.scss 11 months ago _addons.scss 3 weeks ago _agents.scss 10 months ago _animations.scss 11 months ago _booking_form_preview.scss 11 months ago _bookings.scss 3 weeks ago _bundles.scss 11 months ago _buttons.scss 3 weeks ago _calendars.scss 3 weeks ago _categories.scss 11 months ago _customers.scss 10 months ago _dark.scss 10 months ago _daterangepicker.scss 11 months ago _elements.scss 1 month ago _forms.scss 3 weeks ago _grid.scss 1 year ago _grid_variables.scss 1 year ago _icons.scss 1 year ago _latecheckbox.scss 11 months ago _lateselect.scss 1 year ago _layout.scss 3 weeks ago _lightbox.scss 11 months ago _menu.scss 3 weeks ago _messages.scss 11 months ago _misc.scss 3 weeks ago _mixins.scss 11 months ago _notifications.scss 11 months ago _orders.scss 10 months ago _pickr.scss 1 year ago _processes.scss 3 weeks ago _quick_availability.scss 3 weeks ago _reminders.scss 3 weeks ago _responsive.scss 3 weeks ago _roles.scss 1 year ago _schedule.scss 3 weeks ago _services.scss 3 weeks ago _settings.scss 1 month ago _side-panel.scss 3 weeks ago _steps.scss 1 year ago _tables.scss 3 weeks ago _type.scss 1 year ago _updates.scss 3 weeks ago _utilities.scss 1 year ago _variables.scss 3 weeks ago _widgets.scss 3 weeks ago _wizard.scss 3 weeks ago
_grid_variables.scss
42 lines
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;