blue-react 8.3.0 → 8.3.1
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/LICENSE +164 -164
- package/README.md +59 -59
- package/dist/components/ActionMenu.js +2 -2
- package/dist/components/ActionMenuSwitch.js +2 -2
- package/dist/components/Body.js +2 -2
- package/dist/components/BodyRounded.js +2 -2
- package/dist/components/Caret.js +2 -2
- package/dist/components/DocumentView.js +2 -2
- package/dist/components/Grid.js +287 -287
- package/dist/components/Header.js +2 -2
- package/dist/components/HeaderTitle.js +3 -3
- package/dist/components/Intro.js +2 -2
- package/dist/components/Layout.js +19 -19
- package/dist/components/MenuItem.js +3 -2
- package/dist/components/Modal.js +5 -5
- package/dist/components/Outside.js +6 -6
- package/dist/components/Page.js +2 -2
- package/dist/components/Search.js +2 -2
- package/dist/components/SidebarMenu.js +2 -2
- package/dist/components/Switch.js +2 -2
- package/dist/style.css +8694 -4960
- package/dist/style.css.map +1 -0
- package/dist/style.min.css +10 -12
- package/dist/style.scss +28 -28
- package/dist/styles/_action-menu.scss +81 -81
- package/dist/styles/_bootstrap-mixins_overwritten.scss +106 -106
- package/dist/styles/_bootstrap-optimizations.scss +13 -13
- package/dist/styles/_bootstrap-variables.scss +15 -15
- package/dist/styles/_bootstrap.scss +56 -56
- package/dist/styles/_caret.scss +50 -50
- package/dist/styles/_document-view.scss +6 -6
- package/dist/styles/_general.scss +177 -177
- package/dist/styles/_grid.scss +381 -381
- package/dist/styles/_hover.scss +42 -42
- package/dist/styles/_keyframes.scss +73 -73
- package/dist/styles/_mixins.scss +6 -6
- package/dist/styles/_router.scss +18 -18
- package/dist/styles/_search.scss +61 -61
- package/dist/styles/_status.scss +149 -149
- package/dist/styles/_switch.scss +21 -21
- package/dist/styles/_tooltips.scss +189 -189
- package/dist/styles/_variables.scss +97 -97
- package/dist/styles/mixins/_action-menu.scss +68 -68
- package/dist/styles/mixins/_custom-property.scss +10 -10
- package/dist/styles/mixins/_misc.scss +33 -33
- package/dist/styles/mixins/_scroll-shadow.scss +9 -9
- package/dist/styles/mixins/_sidebar.scss +156 -156
- package/dist/styles/mixins/_switch.scss +85 -85
- package/dist/types/components/ActionMenu.d.ts +22 -22
- package/dist/types/components/ActionMenuSwitch.d.ts +11 -11
- package/dist/types/components/Body.d.ts +21 -21
- package/dist/types/components/BodyRounded.d.ts +10 -10
- package/dist/types/components/Caret.d.ts +16 -16
- package/dist/types/components/DocumentView.d.ts +23 -23
- package/dist/types/components/Grid.d.ts +110 -110
- package/dist/types/components/Header.d.ts +8 -8
- package/dist/types/components/HeaderTitle.d.ts +29 -29
- package/dist/types/components/Intro.d.ts +23 -23
- package/dist/types/components/Layout.d.ts +120 -120
- package/dist/types/components/MenuItem.d.ts +69 -69
- package/dist/types/components/Modal.d.ts +25 -25
- package/dist/types/components/ModalProvider.d.ts +11 -11
- package/dist/types/components/Outside.d.ts +14 -14
- package/dist/types/components/Page.d.ts +12 -12
- package/dist/types/components/Search.d.ts +30 -30
- package/dist/types/components/SidebarMenu.d.ts +32 -32
- package/dist/types/components/Status.d.ts +12 -12
- package/dist/types/components/StatusProvider.d.ts +15 -15
- package/dist/types/components/Switch.d.ts +21 -21
- package/dist/types/components/Utilities.d.ts +17 -17
- package/dist/types/components/shared.d.ts +15 -15
- package/index.d.ts +65 -65
- package/index.js +27 -27
- package/package.json +88 -88
package/dist/styles/_caret.scss
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
.caret {
|
|
2
|
-
/* treat like a font icon */
|
|
3
|
-
font-family: "blueicon" !important;
|
|
4
|
-
speak: none;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-weight: normal;
|
|
7
|
-
font-variant: normal;
|
|
8
|
-
text-transform: none;
|
|
9
|
-
line-height: 1;
|
|
10
|
-
-webkit-font-smoothing: antialiased;
|
|
11
|
-
-moz-osx-font-smoothing: grayscale;
|
|
12
|
-
|
|
13
|
-
font-size: 1.15em;
|
|
14
|
-
position: relative;
|
|
15
|
-
top: 0.063rem;
|
|
16
|
-
display: inline-block;
|
|
17
|
-
/* END treat like a font icon */
|
|
18
|
-
|
|
19
|
-
--caret-size: 0.5em;
|
|
20
|
-
--caret-strength: 0.09em;
|
|
21
|
-
|
|
22
|
-
width: 1em;
|
|
23
|
-
|
|
24
|
-
&::before {
|
|
25
|
-
content: "";
|
|
26
|
-
display: block;
|
|
27
|
-
position: absolute;
|
|
28
|
-
top: 50%;
|
|
29
|
-
left: 50%;
|
|
30
|
-
width: var(--caret-size);
|
|
31
|
-
height: var(--caret-size);
|
|
32
|
-
background: transparent;
|
|
33
|
-
box-shadow: var(--caret-strength) var(--caret-strength) 0 currentColor;
|
|
34
|
-
transform: rotate(-45deg) translate(-50%, -50%);
|
|
35
|
-
margin-top: calc((var(--caret-size) + var(--caret-strength)) * -1);
|
|
36
|
-
transition: all 0.2s;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&.caret-mirrored {
|
|
40
|
-
&::before {
|
|
41
|
-
transform: rotate(135deg) translate(-50%, -50%);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&.caret-open {
|
|
46
|
-
&::before {
|
|
47
|
-
transform: rotate(45deg) translate(-50%, -50%);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
.caret {
|
|
2
|
+
/* treat like a font icon */
|
|
3
|
+
font-family: "blueicon" !important;
|
|
4
|
+
speak: none;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: normal;
|
|
7
|
+
font-variant: normal;
|
|
8
|
+
text-transform: none;
|
|
9
|
+
line-height: 1;
|
|
10
|
+
-webkit-font-smoothing: antialiased;
|
|
11
|
+
-moz-osx-font-smoothing: grayscale;
|
|
12
|
+
|
|
13
|
+
font-size: 1.15em;
|
|
14
|
+
position: relative;
|
|
15
|
+
top: 0.063rem;
|
|
16
|
+
display: inline-block;
|
|
17
|
+
/* END treat like a font icon */
|
|
18
|
+
|
|
19
|
+
--caret-size: 0.5em;
|
|
20
|
+
--caret-strength: 0.09em;
|
|
21
|
+
|
|
22
|
+
width: 1em;
|
|
23
|
+
|
|
24
|
+
&::before {
|
|
25
|
+
content: "";
|
|
26
|
+
display: block;
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 50%;
|
|
29
|
+
left: 50%;
|
|
30
|
+
width: var(--caret-size);
|
|
31
|
+
height: var(--caret-size);
|
|
32
|
+
background: transparent;
|
|
33
|
+
box-shadow: var(--caret-strength) var(--caret-strength) 0 currentColor;
|
|
34
|
+
transform: rotate(-45deg) translate(-50%, -50%);
|
|
35
|
+
margin-top: calc((var(--caret-size) + var(--caret-strength)) * -1);
|
|
36
|
+
transition: all 0.2s;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.caret-mirrored {
|
|
40
|
+
&::before {
|
|
41
|
+
transform: rotate(135deg) translate(-50%, -50%);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.caret-open {
|
|
46
|
+
&::before {
|
|
47
|
+
transform: rotate(45deg) translate(-50%, -50%);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.document-view-iframe {
|
|
2
|
-
border: none;
|
|
3
|
-
width: 100%;
|
|
4
|
-
height: calc(100vh - 6.875rem);
|
|
5
|
-
display: block;
|
|
6
|
-
}
|
|
1
|
+
.document-view-iframe {
|
|
2
|
+
border: none;
|
|
3
|
+
width: 100%;
|
|
4
|
+
height: calc(100vh - 6.875rem);
|
|
5
|
+
display: block;
|
|
6
|
+
}
|
|
@@ -1,177 +1,177 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--app-bg: #{$app-bg};
|
|
3
|
-
--sidebar-bg: #{$sidebar-bg};
|
|
4
|
-
--header-bg: #{$header-bg};
|
|
5
|
-
--action-link-bg-color: var(--theme);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@include custom-scrollbar($scrollbar-thumb-color, $theme, false);
|
|
9
|
-
|
|
10
|
-
* {
|
|
11
|
-
scrollbar-width: thin;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/* Versteckt Clear-Button für input[type="search"], da Blue bereits selbst Clear-Buttons liefert */
|
|
15
|
-
input[type="search"]::-webkit-search-decoration,
|
|
16
|
-
input[type="search"]::-webkit-search-cancel-button,
|
|
17
|
-
input[type="search"]::-webkit-search-results-button,
|
|
18
|
-
input[type="search"]::-webkit-search-results-decoration {
|
|
19
|
-
-webkit-appearance: none;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@media screen and (min-width: 768px) {
|
|
23
|
-
::-webkit-scrollbar {
|
|
24
|
-
height: $scrollbar-size;
|
|
25
|
-
overflow: visible;
|
|
26
|
-
width: $scrollbar-size;
|
|
27
|
-
}
|
|
28
|
-
::-webkit-scrollbar-thumb {
|
|
29
|
-
background-clip: padding-box;
|
|
30
|
-
border: solid transparent;
|
|
31
|
-
border-width: 1px;
|
|
32
|
-
min-height: 28px;
|
|
33
|
-
padding: 100px 0 0;
|
|
34
|
-
border-radius: 0.3rem;
|
|
35
|
-
}
|
|
36
|
-
::-webkit-scrollbar-button {
|
|
37
|
-
height: 0;
|
|
38
|
-
width: 0;
|
|
39
|
-
}
|
|
40
|
-
::-webkit-scrollbar-track {
|
|
41
|
-
border: solid transparent;
|
|
42
|
-
border-width: 0 0 0 4px;
|
|
43
|
-
}
|
|
44
|
-
::-webkit-scrollbar-corner {
|
|
45
|
-
background: 0 0;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
html,
|
|
50
|
-
body {
|
|
51
|
-
height: 100%;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
body {
|
|
55
|
-
background: var(--app-bg, #{$app-bg});
|
|
56
|
-
|
|
57
|
-
.blue-wrapper {
|
|
58
|
-
position: fixed;
|
|
59
|
-
width: 100%;
|
|
60
|
-
width: 100%;
|
|
61
|
-
left: 0;
|
|
62
|
-
right: 0;
|
|
63
|
-
top: 0;
|
|
64
|
-
bottom: 0;
|
|
65
|
-
z-index: 1;
|
|
66
|
-
display: none;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&.open {
|
|
70
|
-
.blue-wrapper {
|
|
71
|
-
display: block;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
h1,
|
|
77
|
-
h2 {
|
|
78
|
-
font-weight: 300;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
label {
|
|
82
|
-
font-weight: 600;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// Idee für Effekt von http://www.w3schools.com/howto/howto_css_animate_buttons.asp
|
|
86
|
-
.btn,
|
|
87
|
-
.nav-pills > li > a,
|
|
88
|
-
.pager li > a,
|
|
89
|
-
.pagination > li > a,
|
|
90
|
-
.list-group a.list-group-item {
|
|
91
|
-
&:not(.disabled):not(.readonly):not(.dropdown-toggle) {
|
|
92
|
-
-webkit-transition: background-color 0.3s, color 0.15s, box-shadow 0.3s,
|
|
93
|
-
opacity 0.3s;
|
|
94
|
-
transition: background-color 0.3s, color 0.15s, box-shadow 0.3s,
|
|
95
|
-
opacity 0.3s;
|
|
96
|
-
position: relative;
|
|
97
|
-
|
|
98
|
-
&:hover,
|
|
99
|
-
&:active,
|
|
100
|
-
&:focus {
|
|
101
|
-
z-index: 1;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.page-link {
|
|
107
|
-
&:hover,
|
|
108
|
-
&:focus {
|
|
109
|
-
text-decoration: none;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.page-header {
|
|
114
|
-
padding-bottom: 0.563rem;
|
|
115
|
-
margin: 2.5rem 0 1.25rem;
|
|
116
|
-
border-bottom: 1px solid $table-border-color;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.dark-area {
|
|
120
|
-
background-color: $gray-900;
|
|
121
|
-
color: #fff;
|
|
122
|
-
|
|
123
|
-
a:not(.btn) {
|
|
124
|
-
color: lighten($link-color, 15%);
|
|
125
|
-
|
|
126
|
-
&:hover,
|
|
127
|
-
&:focus {
|
|
128
|
-
color: lighten($link-color, 30%);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.alert-dismissible .close {
|
|
134
|
-
top: -0.375rem;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.blue-wrapper {
|
|
138
|
-
z-index: 3 !important;
|
|
139
|
-
|
|
140
|
-
&.active {
|
|
141
|
-
display: block;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
@media screen and (max-width: 768px) {
|
|
146
|
-
.blue-header-extension .blue-header-logo-title-labels:not(.keep) {
|
|
147
|
-
display: none;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.sign-in-screen {
|
|
152
|
-
padding-top: $normal-size;
|
|
153
|
-
|
|
154
|
-
.sign-in-container {
|
|
155
|
-
animation: enabledBlueAppPage 0.5s;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
@media screen and (min-width: 768px) {
|
|
159
|
-
.sign-in-container {
|
|
160
|
-
padding: 0 calc(50% - 18rem);
|
|
161
|
-
width: auto;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.w-bla-sidebar-width {
|
|
167
|
-
width: $bla-sidebar-width;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.blue-header-logo.sidebar {
|
|
171
|
-
width: $bla-sidebar-width;
|
|
172
|
-
padding-left: calc(#{$normal-size} + #{$spacer});
|
|
173
|
-
transform: translateX(-100%);
|
|
174
|
-
transition: transform 0.4s;
|
|
175
|
-
background: var(--sidebar-bg);
|
|
176
|
-
color: $sidebar-color;
|
|
177
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
--app-bg: #{$app-bg};
|
|
3
|
+
--sidebar-bg: #{$sidebar-bg};
|
|
4
|
+
--header-bg: #{$header-bg};
|
|
5
|
+
--action-link-bg-color: var(--theme);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@include custom-scrollbar($scrollbar-thumb-color, $theme, false);
|
|
9
|
+
|
|
10
|
+
* {
|
|
11
|
+
scrollbar-width: thin;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* Versteckt Clear-Button für input[type="search"], da Blue bereits selbst Clear-Buttons liefert */
|
|
15
|
+
input[type="search"]::-webkit-search-decoration,
|
|
16
|
+
input[type="search"]::-webkit-search-cancel-button,
|
|
17
|
+
input[type="search"]::-webkit-search-results-button,
|
|
18
|
+
input[type="search"]::-webkit-search-results-decoration {
|
|
19
|
+
-webkit-appearance: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@media screen and (min-width: 768px) {
|
|
23
|
+
::-webkit-scrollbar {
|
|
24
|
+
height: $scrollbar-size;
|
|
25
|
+
overflow: visible;
|
|
26
|
+
width: $scrollbar-size;
|
|
27
|
+
}
|
|
28
|
+
::-webkit-scrollbar-thumb {
|
|
29
|
+
background-clip: padding-box;
|
|
30
|
+
border: solid transparent;
|
|
31
|
+
border-width: 1px;
|
|
32
|
+
min-height: 28px;
|
|
33
|
+
padding: 100px 0 0;
|
|
34
|
+
border-radius: 0.3rem;
|
|
35
|
+
}
|
|
36
|
+
::-webkit-scrollbar-button {
|
|
37
|
+
height: 0;
|
|
38
|
+
width: 0;
|
|
39
|
+
}
|
|
40
|
+
::-webkit-scrollbar-track {
|
|
41
|
+
border: solid transparent;
|
|
42
|
+
border-width: 0 0 0 4px;
|
|
43
|
+
}
|
|
44
|
+
::-webkit-scrollbar-corner {
|
|
45
|
+
background: 0 0;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
html,
|
|
50
|
+
body {
|
|
51
|
+
height: 100%;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
body {
|
|
55
|
+
background: var(--app-bg, #{$app-bg});
|
|
56
|
+
|
|
57
|
+
.blue-wrapper {
|
|
58
|
+
position: fixed;
|
|
59
|
+
width: 100%;
|
|
60
|
+
width: 100%;
|
|
61
|
+
left: 0;
|
|
62
|
+
right: 0;
|
|
63
|
+
top: 0;
|
|
64
|
+
bottom: 0;
|
|
65
|
+
z-index: 1;
|
|
66
|
+
display: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&.open {
|
|
70
|
+
.blue-wrapper {
|
|
71
|
+
display: block;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
h1,
|
|
77
|
+
h2 {
|
|
78
|
+
font-weight: 300;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
label {
|
|
82
|
+
font-weight: 600;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Idee für Effekt von http://www.w3schools.com/howto/howto_css_animate_buttons.asp
|
|
86
|
+
.btn,
|
|
87
|
+
.nav-pills > li > a,
|
|
88
|
+
.pager li > a,
|
|
89
|
+
.pagination > li > a,
|
|
90
|
+
.list-group a.list-group-item {
|
|
91
|
+
&:not(.disabled):not(.readonly):not(.dropdown-toggle) {
|
|
92
|
+
-webkit-transition: background-color 0.3s, color 0.15s, box-shadow 0.3s,
|
|
93
|
+
opacity 0.3s;
|
|
94
|
+
transition: background-color 0.3s, color 0.15s, box-shadow 0.3s,
|
|
95
|
+
opacity 0.3s;
|
|
96
|
+
position: relative;
|
|
97
|
+
|
|
98
|
+
&:hover,
|
|
99
|
+
&:active,
|
|
100
|
+
&:focus {
|
|
101
|
+
z-index: 1;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.page-link {
|
|
107
|
+
&:hover,
|
|
108
|
+
&:focus {
|
|
109
|
+
text-decoration: none;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.page-header {
|
|
114
|
+
padding-bottom: 0.563rem;
|
|
115
|
+
margin: 2.5rem 0 1.25rem;
|
|
116
|
+
border-bottom: 1px solid $table-border-color;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.dark-area {
|
|
120
|
+
background-color: $gray-900;
|
|
121
|
+
color: #fff;
|
|
122
|
+
|
|
123
|
+
a:not(.btn) {
|
|
124
|
+
color: lighten($link-color, 15%);
|
|
125
|
+
|
|
126
|
+
&:hover,
|
|
127
|
+
&:focus {
|
|
128
|
+
color: lighten($link-color, 30%);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.alert-dismissible .close {
|
|
134
|
+
top: -0.375rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.blue-wrapper {
|
|
138
|
+
z-index: 3 !important;
|
|
139
|
+
|
|
140
|
+
&.active {
|
|
141
|
+
display: block;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
@media screen and (max-width: 768px) {
|
|
146
|
+
.blue-header-extension .blue-header-logo-title-labels:not(.keep) {
|
|
147
|
+
display: none;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.sign-in-screen {
|
|
152
|
+
padding-top: $normal-size;
|
|
153
|
+
|
|
154
|
+
.sign-in-container {
|
|
155
|
+
animation: enabledBlueAppPage 0.5s;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@media screen and (min-width: 768px) {
|
|
159
|
+
.sign-in-container {
|
|
160
|
+
padding: 0 calc(50% - 18rem);
|
|
161
|
+
width: auto;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.w-bla-sidebar-width {
|
|
167
|
+
width: $bla-sidebar-width;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.blue-header-logo.sidebar {
|
|
171
|
+
width: $bla-sidebar-width;
|
|
172
|
+
padding-left: calc(#{$normal-size} + #{$spacer});
|
|
173
|
+
transform: translateX(-100%);
|
|
174
|
+
transition: transform 0.4s;
|
|
175
|
+
background: var(--sidebar-bg);
|
|
176
|
+
color: $sidebar-color;
|
|
177
|
+
}
|