@asd20/ui 3.2.634 → 3.2.636

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.634",
8
+ "version": "3.2.636",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -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,7 +229,7 @@ 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
234
  display: flex;
219
235
  flex-wrap: wrap;
@@ -221,7 +237,7 @@ export default {
221
237
  padding: space(2) space(3);
222
238
 
223
239
  &::v-deep > * {
224
- flex: 1 1 var(--minimum-column-width);
240
+ // flex: 1 1 var(--minimum-column-width);
225
241
  margin: var(--gutter) !important;
226
242
  max-width: 45%;
227
243
  }
@@ -255,7 +271,7 @@ export default {
255
271
  .primary-messaging-section,
256
272
  .secondary-messaging-section {
257
273
  .asd20-messaging {
258
- flex: 1 1 var(--minimum-column-width);
274
+ // flex: 1 1 var(--minimum-column-width);
259
275
  margin: var(--gutter) !important;
260
276
  }
261
277
  }
@@ -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