-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path_grid.scss
63 lines (48 loc) · 1.11 KB
/
_grid.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@use "mixins/grid" as *;
@use "variables" as *;
$include-column-box-sizing: false !default;
// Row
//
// Rows contain your columns.
:root {
@each $name, $value in $grid-breakpoints {
--#{$prefix}breakpoint-#{$name}: #{$value};
}
--#{$prefix}mobile-breakpoint: #{$mobile-breakpoint};
}
@if $enable-grid-classes {
.row {
@include make-row();
> * {
@include make-col-ready($include-column-box-sizing);
}
}
}
@if $enable-cssgrid {
.grid {
display: grid;
grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);
grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);
gap: var(--#{$prefix}gap, #{$grid-gutter-width});
@include make-cssgrid();
}
}
// Columns
//
// Common styles for small and large grid columns
@if $enable-grid-classes {
@include make-grid-columns();
}
@if $enable-container-queries {
.cq-container {
container-type: inline-size;
}
.cq-row {
container-type: inline-size;
@include make-row();
> * {
@include make-col-ready($include-column-box-sizing);
}
}
@include make-c-grid-columns();
}