srcdev-nuxt-components 2.5.13 → 2.5.15
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.
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div v-show="item.stylist !== ''" class="author" :class="item.textBrightness">{{ item.stylist }}</div>
|
|
15
15
|
<div v-show="item.title !== ''" class="title" :class="item.textBrightness">{{ item.title }}</div>
|
|
16
16
|
<div v-show="item.category !== ''" class="topic" :class="item.textBrightness">{{ item.category }}</div>
|
|
17
|
-
<div v-show="item.description !== ''" class="
|
|
17
|
+
<div v-show="item.description !== ''" class="description" :class="item.textBrightness">{{ item.description }}</div>
|
|
18
18
|
<div class="buttons" :class="item.textBrightness">
|
|
19
19
|
<button>SEE MORE</button>
|
|
20
20
|
</div>
|
|
@@ -270,7 +270,7 @@ onBeforeUnmount(() => {
|
|
|
270
270
|
--_thumbnailWidth: var(--_thumbnailMobileWidth, 100px);
|
|
271
271
|
--_thumbnailHeight: var(--_thumbnailMobileHeight, 165px);
|
|
272
272
|
|
|
273
|
-
@
|
|
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;
|
|
@@ -344,7 +345,7 @@ onBeforeUnmount(() => {
|
|
|
344
345
|
.author,
|
|
345
346
|
.title,
|
|
346
347
|
.topic,
|
|
347
|
-
.
|
|
348
|
+
.description,
|
|
348
349
|
.buttons {
|
|
349
350
|
transform: translateY(50px);
|
|
350
351
|
filter: blur(20px);
|
|
@@ -358,7 +359,7 @@ onBeforeUnmount(() => {
|
|
|
358
359
|
.topic {
|
|
359
360
|
animation-delay: 1.4s !important;
|
|
360
361
|
}
|
|
361
|
-
.
|
|
362
|
+
.description {
|
|
362
363
|
animation-delay: 1.6s !important;
|
|
363
364
|
}
|
|
364
365
|
.buttons {
|
|
@@ -638,7 +639,7 @@ onBeforeUnmount(() => {
|
|
|
638
639
|
.author,
|
|
639
640
|
.title,
|
|
640
641
|
.topic,
|
|
641
|
-
.
|
|
642
|
+
.description,
|
|
642
643
|
.buttons {
|
|
643
644
|
animation: contentOut 1.5s linear 1 forwards !important;
|
|
644
645
|
}
|
package/package.json
CHANGED