@fy-/fws-vue 2.1.41 → 2.1.42

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.
@@ -388,14 +388,14 @@ onUnmounted(() => {
388
388
  </Dialog>
389
389
  </TransitionRoot>
390
390
 
391
- <template v-if="mode === 'grid' || mode === 'mason' || mode === 'custom'">
391
+ <div v-if="mode === 'grid' || mode === 'mason' || mode === 'custom'" class="min-h-[600px] lg:min-h-0">
392
392
  <div
393
393
  :class="{
394
- 'min-h-[600px] lg:min-h-0 grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-4 items-start':
394
+ ' grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-4 items-start':
395
395
  mode === 'mason',
396
- 'min-h-[600px] lg:min-h-0 grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-4 items-center':
396
+ ' grid grid-cols-2 md:grid-cols-4 xl:grid-cols-6 gap-4 items-center':
397
397
  mode === 'grid',
398
- 'min-h-[600px] lg:min-h-0 custom-grid': mode === 'custom',
398
+ ' custom-grid': mode === 'custom',
399
399
  }"
400
400
  >
401
401
  <slot name="thumbnail" />
@@ -464,7 +464,7 @@ onUnmounted(() => {
464
464
  </div>
465
465
  </template>
466
466
  </div>
467
- </template>
467
+ </div>
468
468
  <button
469
469
  v-if="mode === 'button'"
470
470
  :class="`btn ${buttonType ? buttonType : 'primary'} defaults`"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.1.41",
3
+ "version": "2.1.42",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",