@asd20/ui 3.2.947 → 3.2.948
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/package.json
CHANGED
|
@@ -209,6 +209,9 @@ export default {
|
|
|
209
209
|
infinite alternate-reverse both;
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
|
+
.video-toggle-btn {
|
|
213
|
+
display: none;
|
|
214
|
+
}
|
|
212
215
|
|
|
213
216
|
@keyframes slide-top {
|
|
214
217
|
0% {
|
|
@@ -312,31 +315,32 @@ export default {
|
|
|
312
315
|
.scroll-down-indicator {
|
|
313
316
|
display: block;
|
|
314
317
|
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
318
|
+
.video-toggle-btn {
|
|
319
|
+
display: block;
|
|
320
|
+
position: absolute;
|
|
321
|
+
bottom: 2rem;
|
|
322
|
+
right: 0.5rem;
|
|
323
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
324
|
+
color: lightgray;
|
|
325
|
+
border: none;
|
|
326
|
+
width: 45px;
|
|
327
|
+
height: 45px;
|
|
328
|
+
border-radius: 50%;
|
|
329
|
+
display: flex;
|
|
330
|
+
align-items: center;
|
|
331
|
+
justify-content: center;
|
|
332
|
+
font-size: 18px;
|
|
333
|
+
cursor: pointer;
|
|
334
|
+
transition: background-color 0.3s ease-in-out;
|
|
335
|
+
}
|
|
333
336
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
+
.video-toggle-btn:hover {
|
|
338
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
339
|
+
}
|
|
337
340
|
|
|
338
|
-
|
|
339
|
-
|
|
341
|
+
.video-toggle-btn span {
|
|
342
|
+
line-height: 1;
|
|
343
|
+
}
|
|
340
344
|
}
|
|
341
345
|
}
|
|
342
346
|
</style>
|