react-asc 20.0.0 → 20.1.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/components/Grid/Row/Row.d.ts +4 -1
- package/index.es.js +242 -231
- package/index.js +242 -231
- package/package.json +1 -1
- package/react-asc.scss +28 -4
package/package.json
CHANGED
package/react-asc.scss
CHANGED
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
--buttonMinWidth: 62px;
|
|
43
43
|
--buttonPadding: 11px 15px;
|
|
44
44
|
|
|
45
|
-
--fontFamily:
|
|
45
|
+
--fontFamily: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
|
|
46
|
+
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
46
47
|
--fontSize: 16px;
|
|
47
48
|
--fontWeight: 400;
|
|
48
49
|
|
|
@@ -51,6 +52,13 @@
|
|
|
51
52
|
--breakpointMd: 768px;
|
|
52
53
|
|
|
53
54
|
--bodyLineHeight: 1.5;
|
|
55
|
+
|
|
56
|
+
--breakpoint-xs: 0;
|
|
57
|
+
--breakpoint-sm: 576px;
|
|
58
|
+
--breakpoint-md: 768px;
|
|
59
|
+
--breakpoint-lg: 992px;
|
|
60
|
+
--breakpoint-xl: 1200px;
|
|
61
|
+
--breakpoint-xxl: 1400px;
|
|
54
62
|
}
|
|
55
63
|
|
|
56
64
|
.input-group-append {
|
|
@@ -156,11 +164,27 @@
|
|
|
156
164
|
flex-wrap: wrap;
|
|
157
165
|
}
|
|
158
166
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
167
|
+
.flex-row {
|
|
168
|
+
flex-direction: row;
|
|
169
|
+
}
|
|
170
|
+
.flex-row-reverse {
|
|
171
|
+
flex-direction: row-reverse;
|
|
172
|
+
}
|
|
173
|
+
.flex-column {
|
|
174
|
+
flex-direction: column;
|
|
175
|
+
}
|
|
176
|
+
.flex-column-reverse {
|
|
177
|
+
flex-direction: column-reverse;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
@media (max-width: 576px) {
|
|
181
|
+
.flex-row {
|
|
182
|
+
flex-direction: column!important;
|
|
162
183
|
}
|
|
163
184
|
}
|
|
185
|
+
@media (min-width: 768px) {
|
|
186
|
+
|
|
187
|
+
}
|
|
164
188
|
|
|
165
189
|
.modal-open {
|
|
166
190
|
overflow: hidden !important;
|