@muraldevkit/ui-toolkit 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/grid/MrlCol/MrlCol.d.ts +17 -0
- package/dist/components/grid/MrlCol/index.d.ts +1 -0
- package/dist/components/grid/MrlGrid/MrlGrid.d.ts +18 -0
- package/dist/components/grid/MrlGrid/index.d.ts +1 -0
- package/dist/components/grid/MrlRow/MrlRow.d.ts +29 -0
- package/dist/components/grid/MrlRow/index.d.ts +1 -0
- package/dist/components/grid/constants.d.ts +49 -0
- package/dist/components/grid/index.d.ts +3 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/styles/grid/global.scss +2 -0
- package/dist/styles/grid/variables.scss +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
////
|
|
2
|
+
//// Grid variables
|
|
3
|
+
//// @group grid
|
|
4
|
+
////
|
|
5
|
+
|
|
6
|
+
//// Grid customizations
|
|
7
|
+
$grid-breakpoints: (
|
|
8
|
+
xs: 0,
|
|
9
|
+
sm: 600px,
|
|
10
|
+
md: 834px,
|
|
11
|
+
lg: 1024px,
|
|
12
|
+
xl: 1280px,
|
|
13
|
+
xxl: 1440px
|
|
14
|
+
);
|
|
15
|
+
$grid-gutter-width: 1rem;
|
|
16
|
+
|
|
17
|
+
//// Spacers customization
|
|
18
|
+
// Example of impacted selectors: p-1, px-2, px-lg-4, etc. p-16px
|
|
19
|
+
$spacer: 1rem;
|
|
20
|
+
$spacers: (
|
|
21
|
+
0: 0,
|
|
22
|
+
1: $spacer * 1,
|
|
23
|
+
2: $spacer * 2,
|
|
24
|
+
3: $spacer * 3,
|
|
25
|
+
4: $spacer * 0.25,
|
|
26
|
+
5: $spacer * 0.5
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
//// Gutters customization
|
|
30
|
+
// Example of impacted selectors: g-1, gx-2, gx-lg-4, etc.
|
|
31
|
+
$gutters: (
|
|
32
|
+
0: 0,
|
|
33
|
+
1: $spacer,
|
|
34
|
+
2: $spacer * 2,
|
|
35
|
+
none: 0
|
|
36
|
+
);
|