mirror of https://github.com/VERT-sh/VERT.git
fix: dropdown & language fixex
This commit is contained in:
parent
428e6fd6a6
commit
6b8967f49a
|
@ -47,7 +47,7 @@
|
|||
"convert_all": "Convertir todo",
|
||||
"download_all": "Comprimir todo",
|
||||
"remove_all": "Quitar todos los archivos",
|
||||
"set_all_to": "Marcar todos:",
|
||||
"set_all_to": "Cambiar todos a",
|
||||
"na": "N/A"
|
||||
},
|
||||
"tooltips": {
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
{/each}
|
||||
</div>
|
||||
<ChevronDown
|
||||
class="w-4 h-4 ml-4 mt-0.5 flex-shrink-0"
|
||||
class="w-4 h-4 ml-3 mt-0.5 flex-shrink-0"
|
||||
style="transform: rotate({open
|
||||
? 180
|
||||
: 0}deg); transition: transform {duration}ms {transition};"
|
||||
|
|
|
@ -288,7 +288,7 @@
|
|||
{/if}
|
||||
</div>
|
||||
<ChevronDown
|
||||
class="w-4 h-4 ml-4 mt-0.5 flex-shrink-0"
|
||||
class="w-4 h-4 ml-3 mt-0.5 flex-shrink-0"
|
||||
style="transform: rotate({open
|
||||
? 180
|
||||
: 0}deg); transition: transform {duration}ms {transition};"
|
||||
|
@ -364,8 +364,11 @@
|
|||
{#each filteredData.formats as format}
|
||||
<button
|
||||
class="w-full p-2 text-center rounded-xl
|
||||
{format === selected ? 'bg-accent text-black' : 'hover:bg-panel'}
|
||||
{format === from ? 'bg-separator' : ''}"
|
||||
{format === selected
|
||||
? 'bg-accent text-black'
|
||||
: format === from
|
||||
? 'bg-separator'
|
||||
: 'hover:bg-panel'}"
|
||||
onclick={() => selectOption(format)}
|
||||
>
|
||||
{format}
|
||||
|
|
Loading…
Reference in New Issue