srcdev-nuxt-components 2.5.13 → 2.5.14

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.
@@ -270,7 +270,7 @@ onBeforeUnmount(() => {
270
270
  --_thumbnailWidth: var(--_thumbnailMobileWidth, 100px);
271
271
  --_thumbnailHeight: var(--_thumbnailMobileHeight, 165px);
272
272
 
273
- @media screen and (min-width: 1024px) {
273
+ @container (width >= 1024px) {
274
274
  --_thumbnailWidth: var(--_thumbnailDesktopWidth, 150px);
275
275
  --_thumbnailHeight: var(--_thumbnailDesktopHeight, 220px);
276
276
  }
@@ -282,6 +282,7 @@ onBeforeUnmount(() => {
282
282
  inset: 0 0 0 0;
283
283
 
284
284
  z-index: 9999;
285
+ container-type: inline-size;
285
286
 
286
287
  .loading-state {
287
288
  position: absolute;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "2.5.13",
4
+ "version": "2.5.14",
5
5
  "main": "nuxt.config.ts",
6
6
  "scripts": {
7
7
  "clean": "rm -rf .nuxt && rm -rf .output && rm -rf .playground/.nuxt && rm -rf .playground/.output",