@asd20/ui 3.2.633 → 3.2.635

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.633",
8
+ "version": "3.2.635",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -58,13 +58,13 @@ export default {
58
58
  @media (min-width: 768px) {
59
59
  .asd20-grid {
60
60
  & > * {
61
- width: calc(100% / var(--columns-tablet, 3));
61
+ width: calc(100% / var(--columns-tablet, 4));
62
62
  }
63
63
  &--guttered {
64
64
  margin-left: space(-1);
65
65
  margin-top: space(-1);
66
66
  & > * {
67
- width: calc(100% / var(--columns-tablet, 3) - #{space(1)});
67
+ width: calc(100% / var(--columns-tablet, 4) - #{space(1)});
68
68
  margin-top: space(1);
69
69
  margin-left: space(1);
70
70
  }
@@ -74,11 +74,11 @@ export default {
74
74
  @media (min-width: 1140px) {
75
75
  .asd20-grid {
76
76
  & > * {
77
- width: calc(100% / var(--columns-desktop, 4));
77
+ width: calc(100% / var(--columns-desktop, 6));
78
78
  }
79
79
  &--guttered {
80
80
  & > * {
81
- width: calc(100% / var(--columns-desktop, 4) - #{space(1)});
81
+ width: calc(100% / var(--columns-desktop, 6) - #{space(1)});
82
82
  }
83
83
  }
84
84
  }
@@ -186,7 +186,23 @@ export default {
186
186
  // margin: space(1) !important;
187
187
  }
188
188
  }
189
- &--grid,
189
+ &--grid {
190
+ .primary-messaging-section,
191
+ .secondary-messaging-section {
192
+ --minimum-column-width: 480px;
193
+ --gutter: #{space(1)};
194
+ display: flex;
195
+ flex-wrap: wrap;
196
+ margin: calc(var(--gutter) * -1);
197
+ padding: space(2) space(3);
198
+
199
+ &::v-deep > * {
200
+ flex: 1 1 var(--minimum-column-width);
201
+ margin: var(--gutter) !important;
202
+ // max-width: 45%;
203
+ }
204
+ }
205
+ }
190
206
  &--fullscreen {
191
207
  .primary-messaging-section,
192
208
  .secondary-messaging-section {
@@ -213,9 +229,9 @@ export default {
213
229
  &--grid {
214
230
  .primary-messaging-section,
215
231
  .secondary-messaging-section {
216
- // --minimum-column-width: 480px;
232
+ --minimum-column-width: 480px;
217
233
  --gutter: #{space(1)};
218
- display: block;
234
+ display: flex;
219
235
  flex-wrap: wrap;
220
236
  margin: calc(var(--gutter) * -1);
221
237
  padding: space(2) space(3);
@@ -259,10 +259,10 @@ export default {
259
259
  padding-top: space(1) !important;
260
260
  padding-bottom: space(1) !important;
261
261
  .asd20-messaging {
262
- border-left: space(1) solid var(--color__tertiary);
263
- border-bottom: space(1) solid var(--color__tertiary);
264
- padding-left: space(1);
265
- padding-bottom: space(1);
262
+ border-left: space(0.5) solid var(--color__tertiary);
263
+ border-bottom: space(0.5) solid var(--color__tertiary);
264
+ padding-left: space(0.5);
265
+ padding-bottom: space(0.5);
266
266
  }
267
267
  }
268
268
  p {
@@ -292,6 +292,16 @@ export default {
292
292
  .asd20-notification-group--floating {
293
293
  top: space(0.5);
294
294
  }
295
+ .intro-message {
296
+ .primary-messaging-section {
297
+ .asd20-messaging {
298
+ border-left: space(1) solid var(--color__tertiary);
299
+ border-bottom: space(1) solid var(--color__tertiary);
300
+ padding-left: space(1);
301
+ padding-bottom: space(1);
302
+ }
303
+ }
304
+ }
295
305
  }
296
306
  }
297
307