@sorocraft/ui 1.0.5 → 1.0.7
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/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/animations.scss +58 -0
- package/dist/styles/scss/variables.scss +19 -5
- package/dist/styles/ui.css +1 -1
- package/dist/styles/ui.css.map +1 -1
- package/package.json +1 -1
|
@@ -20,12 +20,9 @@ $body-font-weight: 400;
|
|
|
20
20
|
$body-line-height: 1.5;
|
|
21
21
|
|
|
22
22
|
/* BUTTON */
|
|
23
|
-
$btn-font-size: 1.15rem;
|
|
24
23
|
$btn-font-weight: 500;
|
|
25
24
|
$btn-line-height: 1.5;
|
|
26
25
|
$btn-disabled-opacity: 0.65;
|
|
27
|
-
$btn-font-weight: 500;
|
|
28
|
-
$btn-line-height: 1.5;
|
|
29
26
|
$btn-font-size: 0.925rem;
|
|
30
27
|
$btn-color: $color-body-text;
|
|
31
28
|
|
|
@@ -37,6 +34,7 @@ $right-drawer-width: 420px;
|
|
|
37
34
|
|
|
38
35
|
$tooltip-size: 0.75rem;
|
|
39
36
|
$container-padding: 30px;
|
|
37
|
+
$container-mobile-padding: 20px;
|
|
40
38
|
$mobile-padding: 15px;
|
|
41
39
|
|
|
42
40
|
/* HEIGHT */
|
|
@@ -44,6 +42,9 @@ $header-height: 4rem;
|
|
|
44
42
|
$secondary-header-height: 2.75rem;
|
|
45
43
|
|
|
46
44
|
/* CARD */
|
|
45
|
+
$card-header-padding: 1.75rem;
|
|
46
|
+
$card-body-padding: 1.75rem;
|
|
47
|
+
$card-footer-gap: 0.5rem;
|
|
47
48
|
|
|
48
49
|
/* TABLE */
|
|
49
50
|
|
|
@@ -69,9 +70,21 @@ $badge-font-weight: 600;
|
|
|
69
70
|
|
|
70
71
|
/* EDITOR */
|
|
71
72
|
|
|
72
|
-
/*
|
|
73
|
+
/* HEADER */
|
|
74
|
+
$header-padding: 1rem;
|
|
75
|
+
|
|
76
|
+
/* Z-INDEX */
|
|
77
|
+
$z-layer-0: 0;
|
|
78
|
+
$z-layer-1: 1;
|
|
79
|
+
$z-layer-2: 10;
|
|
73
80
|
|
|
74
|
-
/*
|
|
81
|
+
/* SIZES */
|
|
82
|
+
$size-xs: 0;
|
|
83
|
+
$size-sm: 576px;
|
|
84
|
+
$size-md: 768px;
|
|
85
|
+
$size-lg: 992px;
|
|
86
|
+
$size-xl: 1200px;
|
|
87
|
+
$size-xxl: 1440px;
|
|
75
88
|
|
|
76
89
|
/* SHADOW */
|
|
77
90
|
$task-card-shadow: 0px 0px 10px 0px rgba(56, 71, 109, 0.075);
|
|
@@ -88,6 +101,7 @@ $highlighted-message-shadow: 0px 0px 20px 0px
|
|
|
88
101
|
$alpha: 0.5,
|
|
89
102
|
);
|
|
90
103
|
$box-right-shadow: 2px 0px 5px -3px rgba(0, 0, 0, 0.15);
|
|
104
|
+
$image-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
|
|
91
105
|
|
|
92
106
|
/**/
|
|
93
107
|
$uiTypeStyles: (
|