@thinkpixellab-public/px-vue 3.0.27 → 3.0.28

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.
@@ -230,7 +230,7 @@ export default {
230
230
 
231
231
  return {
232
232
  // prettier-ignore
233
- gridTemplateColumns: `repeat(${colCount}, 1fr)`,
233
+ gridTemplateColumns: `repeat(${colCount}, minmax(0, ${1 / colCount}fr))`,
234
234
  maxWidth: this.cssPx(maxGridWidth),
235
235
  '--gap': this.cssPx(this.gap),
236
236
  '--aspect': defAspect,
@@ -487,8 +487,10 @@ export default {
487
487
  justify-content: stretch;
488
488
  position: relative;
489
489
  flex: 1;
490
+ grid-template-columns: 100%;
491
+ grid-template-rows: auto;
490
492
  > * {
491
- @include abs();
493
+ width: 100%;
492
494
  }
493
495
  }
494
496
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thinkpixellab-public/px-vue",
3
- "version": "3.0.27",
3
+ "version": "3.0.28",
4
4
  "description": "General purpose Vue components and helpers that can be used across projects.",
5
5
  "author": "Pixel Lab",
6
6
  "license": "MIT",