@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.
@@ -0,0 +1,2 @@
1
+ @import 'grid.variables';
2
+ @import '../../vendor/bootstrap/bootstrap-grid';
@@ -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
+ );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",