@sonic-equipment/ui 175.0.0 → 176.0.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/styles.css +12 -4
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -3337,10 +3337,18 @@ html {
|
|
|
3337
3337
|
display: grid;
|
|
3338
3338
|
gap: var(--row-gap) var(--column-gap);
|
|
3339
3339
|
grid-template-columns: repeat(var(--nr-of-columns), 1fr);
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3340
|
+
|
|
3341
|
+
/** TODO: @Kristiaan the following code introduces a bug
|
|
3342
|
+
** that cuts off the carts around 50px when the filters are open.
|
|
3343
|
+
** I commented out the code for now, but it should be fixed later.;
|
|
3344
|
+
|
|
3345
|
+
-> grid-template-rows: repeat(
|
|
3346
|
+
-> auto-fill,
|
|
3347
|
+
-> [item-start] minmax(0, min-content) [item-end] 50px
|
|
3348
|
+
-> );
|
|
3349
|
+
|
|
3350
|
+
**/
|
|
3351
|
+
|
|
3344
3352
|
inline-size: 100%;
|
|
3345
3353
|
}
|
|
3346
3354
|
|