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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-asc",
3
- "version": "20.0.0",
3
+ "version": "20.1.0",
4
4
  "description": "handcrafted react components",
5
5
  "main": "index.js",
6
6
  "module": "index.es.js",
package/react-asc.scss CHANGED
@@ -42,7 +42,8 @@
42
42
  --buttonMinWidth: 62px;
43
43
  --buttonPadding: 11px 15px;
44
44
 
45
- --fontFamily: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
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
- @media (min-width: 768px) {
160
- .mt-md-0 {
161
- margin-top: 0 !important;
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;