@broxus/react-uikit 0.11.0 → 0.12.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/cjs/components/ConfigProvider/index.js +2 -0
- package/dist/cjs/styles/_import.components.scss +1 -1
- package/dist/cjs/styles/_import.scss +1 -1
- package/dist/cjs/styles/variables.scss +4 -0
- package/dist/cjs/styles/vars.scss +8 -4
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/cjs/types.d.ts +4 -0
- package/dist/esm/components/ConfigProvider/index.js +2 -0
- package/dist/esm/styles/_import.components.scss +1 -1
- package/dist/esm/styles/_import.scss +1 -1
- package/dist/esm/styles/variables.scss +4 -0
- package/dist/esm/styles/vars.scss +8 -4
- package/dist/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/esm/types.d.ts +4 -0
- package/package.json +6 -6
|
@@ -21,11 +21,15 @@ $breakpoint-small: 640px !default;
|
|
|
21
21
|
$breakpoint-medium: 960px !default; // Tablet Landscape
|
|
22
22
|
$breakpoint-large: 1200px !default; // Desktop
|
|
23
23
|
$breakpoint-xlarge: 1600px !default; // Large Screens
|
|
24
|
+
$breakpoint-2xlarge: 2560px !default; // Wide Screens
|
|
25
|
+
$breakpoint-3xlarge: 3440px !default; // Ultra Wide Screens
|
|
24
26
|
|
|
25
27
|
$breakpoint-xsmall-max: ($breakpoint-small - 1) !default;
|
|
26
28
|
$breakpoint-small-max: ($breakpoint-medium - 1) !default;
|
|
27
29
|
$breakpoint-medium-max: ($breakpoint-large - 1) !default;
|
|
28
30
|
$breakpoint-large-max: ($breakpoint-xlarge - 1) !default;
|
|
31
|
+
$breakpoint-xlarge-max: ($breakpoint-2xlarge - 1) !default;
|
|
32
|
+
$breakpoint-2xlarge-max: ($breakpoint-3xlarge - 1) !default;
|
|
29
33
|
|
|
30
34
|
|
|
31
35
|
// Global variables
|
|
@@ -14,10 +14,14 @@
|
|
|
14
14
|
--breakpoint-medium: #{$breakpoint-medium};
|
|
15
15
|
--breakpoint-large: #{$breakpoint-large};
|
|
16
16
|
--breakpoint-xlarge: #{$breakpoint-xlarge};
|
|
17
|
-
--breakpoint-
|
|
18
|
-
--breakpoint-
|
|
19
|
-
--breakpoint-
|
|
20
|
-
--breakpoint-
|
|
17
|
+
--breakpoint-2xlarge: #{$breakpoint-2xlarge};
|
|
18
|
+
--breakpoint-3xlarge: #{$breakpoint-3xlarge};
|
|
19
|
+
--breakpoint-xsmall-max: #{$breakpoint-xsmall-max};
|
|
20
|
+
--breakpoint-small-max: #{$breakpoint-small-max};
|
|
21
|
+
--breakpoint-medium-max: #{$breakpoint-medium-max};
|
|
22
|
+
--breakpoint-large-max: #{$breakpoint-large-max};
|
|
23
|
+
--breakpoint-xlarge-max: #{$breakpoint-xlarge-max};
|
|
24
|
+
--breakpoint-2xlarge-max: #{$breakpoint-2xlarge-max};
|
|
21
25
|
|
|
22
26
|
|
|
23
27
|
// Global variables
|