mirror of https://github.com/VERT-sh/VERT.git
fix: visual fixes
This commit is contained in:
parent
d1cf0a8f31
commit
c336d7d7a7
|
@ -318,14 +318,17 @@ body {
|
||||||
|
|
||||||
.hoverable {
|
.hoverable {
|
||||||
@apply hover:scale-105 duration-200;
|
@apply hover:scale-105 duration-200;
|
||||||
|
will-change: transform;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hoverable-md {
|
.hoverable-md {
|
||||||
@apply hover:scale-110 duration-200;
|
@apply hover:scale-110 duration-200;
|
||||||
|
will-change: transform;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hoverable-lg {
|
.hoverable-lg {
|
||||||
@apply hover:scale-[1.15] duration-200;
|
@apply hover:scale-[1.15] duration-200;
|
||||||
|
will-change: transform;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected {
|
.selected {
|
||||||
|
|
|
@ -210,22 +210,23 @@
|
||||||
Monthly
|
Monthly
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-3 w-full">
|
<div class="grid grid-cols-4 gap-3 w-full">
|
||||||
{#each presetAmounts as preset}
|
{#each presetAmounts as preset, i}
|
||||||
<button
|
<button
|
||||||
onclick={() => amountClick(preset)}
|
onclick={() => amountClick(preset)}
|
||||||
class={clsx(
|
class={clsx(
|
||||||
"btn flex-1 p-4 rounded-lg flex items-center justify-center",
|
"btn p-4 rounded-lg flex items-center justify-center",
|
||||||
{
|
{
|
||||||
"!scale-100": !$effects,
|
"!scale-100": !$effects,
|
||||||
"bg-accent-red text-black": amount === preset,
|
"bg-accent-red text-black": amount === preset,
|
||||||
},
|
},
|
||||||
)}
|
)}
|
||||||
|
style={i === 2 ? "grid-column: 3;" : ""}
|
||||||
>
|
>
|
||||||
${preset} USD
|
${preset} USD
|
||||||
</button>
|
</button>
|
||||||
{/each}
|
{/each}
|
||||||
<div class="flex-[2] flex items-center justify-center">
|
<div class="flex items-center justify-center">
|
||||||
<FancyInput
|
<FancyInput
|
||||||
bind:value={customAmount}
|
bind:value={customAmount}
|
||||||
placeholder="Custom"
|
placeholder="Custom"
|
||||||
|
|
|
@ -115,28 +115,24 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="file-category-card-content flex-grow gap-4">
|
<div class="file-category-card-content flex-grow gap-4">
|
||||||
<div class="flex flex-col gap-1">
|
{#if key === "Video"}
|
||||||
{#if key === "Video"}
|
|
||||||
<p>
|
|
||||||
Video uploads to a server for processing by
|
|
||||||
default, learn how to set it up locally <a
|
|
||||||
target="_blank"
|
|
||||||
href="https://github.com/VERT-sh/VERT/wiki/How-to-convert-video-with-VERT"
|
|
||||||
>here</a
|
|
||||||
>.
|
|
||||||
</p>
|
|
||||||
{:else}
|
|
||||||
<p
|
|
||||||
class="flex tems-center justify-center gap-2"
|
|
||||||
>
|
|
||||||
<Check size="20" /> Local fully supported
|
|
||||||
</p>
|
|
||||||
{/if}
|
|
||||||
<p>
|
<p>
|
||||||
<b>Status: </b>
|
Video uploads to a server for processing by
|
||||||
{s.ready ? "ready" : "not ready"}
|
default, learn how to set it up locally <a
|
||||||
|
target="_blank"
|
||||||
|
href="https://github.com/VERT-sh/VERT/wiki/How-to-convert-video-with-VERT"
|
||||||
|
>here</a
|
||||||
|
>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
{:else}
|
||||||
|
<p class="flex tems-center justify-center gap-2">
|
||||||
|
<Check size="20" /> Local fully supported
|
||||||
|
</p>
|
||||||
|
{/if}
|
||||||
|
<p>
|
||||||
|
<b>Status: </b>
|
||||||
|
{s.ready ? "ready" : "not ready"}
|
||||||
|
</p>
|
||||||
<div>
|
<div>
|
||||||
<span class="flex flex-wrap justify-center">
|
<span class="flex flex-wrap justify-center">
|
||||||
<b>Supported formats: </b>
|
<b>Supported formats: </b>
|
||||||
|
|
Loading…
Reference in New Issue