@sorocraft/ui 1.0.73 → 1.0.75
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/Button/Button.d.ts +2 -1
- package/dist/components/Flex/Flex.d.ts +1 -1
- package/dist/components/Flex/Flex.types.d.ts +3 -0
- package/dist/components/IconButton/IconButton.d.ts +2 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/scss/colors.scss +1 -1
- package/dist/styles/scss/mixins.scss +21 -0
- package/dist/styles/ui.css +1 -1
- package/dist/styles/ui.css.map +1 -1
- package/package.json +1 -1
|
@@ -28,7 +28,7 @@ $color-light: $color-gray-100;
|
|
|
28
28
|
$color-light-active: $color-gray-300;
|
|
29
29
|
$color-light-inverse: $color-gray-600;
|
|
30
30
|
$color-primary: var(--sorocraft-color-primary, #2d3436);
|
|
31
|
-
$color-primary-light:
|
|
31
|
+
$color-primary-light: var(--sorocraft-color-primary-light, #f5f8fa);
|
|
32
32
|
$color-primary-active: var(--sorocraft-color-primary-active, #212526);
|
|
33
33
|
$color-primary-inverse: var(--sorocraft-color-primary-inverse, $color-white);
|
|
34
34
|
$color-secondary: var(--sorocraft-color-secondary, #16a085);
|
|
@@ -41,6 +41,27 @@
|
|
|
41
41
|
|
|
42
42
|
/* RESPONSIVE */
|
|
43
43
|
|
|
44
|
+
$breakpoints: (
|
|
45
|
+
// Extra small mobile devices (older phones)
|
|
46
|
+
mobile-xs: 320px,
|
|
47
|
+
// Small mobile devices (small smartphones)
|
|
48
|
+
mobile-sm: 480px,
|
|
49
|
+
// Medium mobile devices (larger smartphones)
|
|
50
|
+
mobile-md: 576px,
|
|
51
|
+
// Small tablets or phablets
|
|
52
|
+
tablet-sm: 768px,
|
|
53
|
+
// Medium tablets or small desktops
|
|
54
|
+
tablet-md: 992px,
|
|
55
|
+
// Large tablets
|
|
56
|
+
tablet-lg: 1024px,
|
|
57
|
+
// Small to medium desktops
|
|
58
|
+
desktop-sm: 1200px,
|
|
59
|
+
// Medium to large desktops
|
|
60
|
+
desktop-md: 1440px,
|
|
61
|
+
// Large desktops and full HD screens,
|
|
62
|
+
desktop-lg: 1920px
|
|
63
|
+
);
|
|
64
|
+
|
|
44
65
|
$xxs: 375px;
|
|
45
66
|
$xs: 430px;
|
|
46
67
|
$sm: 580px;
|