This repository was archived by the owner on Jan 6, 2024. It is now read-only.
File tree 3 files changed +2
-16
lines changed
3 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const path = computed(() => {
12
12
</script >
13
13
14
14
<template >
15
- <button class = " scroll-driven-animations " flex =" ~ col gap-1" hover =" bg-active" items-center of-hidden rounded p2 >
15
+ <button flex =" ~ col gap-1" hover =" bg-active" items-center of-hidden rounded p2 >
16
16
<AssetPreview h-30 w-30 rounded border =" ~ base" :asset =" asset" />
17
17
<div w-full of-hidden truncate ws-nowrap text-center text-xs >
18
18
{{ path }}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const icon = computed(() => {
17
17
</script >
18
18
19
19
<template >
20
- <button class = " scroll-driven-animations " flex =" ~ gap-1" w-full items-center hover =" bg-active" rounded px4 py2 >
20
+ <button flex =" ~ gap-1" w-full items-center hover =" bg-active" rounded px4 py2 >
21
21
<div :class =" icon" />
22
22
<div of-hidden truncate ws-nowrap text-center >
23
23
{{ asset.path }}
Original file line number Diff line number Diff line change @@ -187,17 +187,3 @@ textarea {
187
187
--uno : my-4;
188
188
}
189
189
190
- @keyframes animate-in {
191
- 0% { opacity : 0 ; transform : translateY (100% ); }
192
- 100% { opacity : 1 ; transform : translateY (0 ); }
193
- }
194
- @keyframes animate-out {
195
- 0% { opacity : 1 ; transform : translateY (0 ); }
196
- 100% { opacity : 0 ; transform : translateY (-100% ); }
197
- }
198
-
199
- .scroll-driven-animations {
200
- animation : animate-in linear forwards, animate-out linear forwards;
201
- animation-timeline : view ();
202
- animation-range : entry, exit;
203
- }
You can’t perform that action at this time.
0 commit comments