@phillips/seldon 1.107.0 → 1.108.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/dist/scss/_utils.scss +4 -0
- package/dist/scss/_vars.scss +5 -1
- package/package.json +1 -1
package/dist/scss/_utils.scss
CHANGED
package/dist/scss/_vars.scss
CHANGED
|
@@ -323,6 +323,7 @@ $snowflake-menu-padding: 1.25rem;
|
|
|
323
323
|
--spacing-lg: 2.75rem;
|
|
324
324
|
--spacing-xl: 3.75rem;
|
|
325
325
|
--spacing-xxl: 4.75rem;
|
|
326
|
+
--spacing-xxxl: 5.75rem;
|
|
326
327
|
|
|
327
328
|
@media (min-width: $breakpoint-md) {
|
|
328
329
|
--spacing-micro: 0.25rem;
|
|
@@ -332,6 +333,7 @@ $snowflake-menu-padding: 1.25rem;
|
|
|
332
333
|
--spacing-lg: 3rem;
|
|
333
334
|
--spacing-xl: 4rem;
|
|
334
335
|
--spacing-xxl: 5rem;
|
|
336
|
+
--spacing-xxxl: 6rem;
|
|
335
337
|
}
|
|
336
338
|
|
|
337
339
|
@media (min-width: $breakpoint-xl) {
|
|
@@ -342,6 +344,7 @@ $snowflake-menu-padding: 1.25rem;
|
|
|
342
344
|
--spacing-lg: 3.75rem;
|
|
343
345
|
--spacing-xl: 5rem;
|
|
344
346
|
--spacing-xxl: 5.25rem;
|
|
347
|
+
--spacing-xxxl: 6.25rem;
|
|
345
348
|
}
|
|
346
349
|
}
|
|
347
350
|
|
|
@@ -352,7 +355,8 @@ $spacing-md: var(--spacing-md);
|
|
|
352
355
|
$spacing-lg: var(--spacing-lg);
|
|
353
356
|
$spacing-xl: var(--spacing-xl);
|
|
354
357
|
$spacing-xxl: var(--spacing-xl);
|
|
355
|
-
$spacing-
|
|
358
|
+
$spacing-xxxl: var(--spacing-xxxl);
|
|
359
|
+
$spacing-sizes: micro, xsm, sm, md, lg, xl, xxl, xxxl;
|
|
356
360
|
|
|
357
361
|
// PADDING
|
|
358
362
|
$padding-micro: var(--spacing-micro);
|