tg app fix

This commit is contained in:
xds
2025-10-28 00:34:59 +03:00
parent 2e83b27c0e
commit eb70f70100

View File

@@ -111,22 +111,35 @@ onMounted(async () => {
<div class="flex flex-col w-full ">
<div class=" flex-col " v-tooltip.focus.bottom="'Only emoji supported'">
<input class="!flex !justify-items-center !justify-center font-extralight text-9xl w-full focus:outline-0"
placeholder="Icon" v-model="categoryIcon" @input="handleInput" @paste="handlePaste"
@compositionend="handleCompositionEnd" inputmode="text"
<input
class="
block w-full
text-9xl font-extralight
text-center placeholder:text-center /* центрируем текст и плейсхолдер */
p-0 m-0 border-0 bg-transparent
focus:outline-none appearance-none /* убрать системные артефакты iOS/TG */
leading-none
"
placeholder="Icon"
v-model="categoryIcon"
@input="handleInput"
@paste="handlePaste"
@compositionend="handleCompositionEnd"
inputmode="text"
autocomplete="off"
spellcheck="false"/>
<label class="!justify-items-center !justify-center !font-extralight text-gray-600 text-center">Category
spellcheck="false"
/>
<label class=" !justify-center !font-extralight text-gray-600 text-center">Category
icon</label>
</div>
<div class="w-full !justify-items-center !items-center !justify-center">
<div class="w-full !items-center !justify-center">
<SelectButton
v-model="categoryType"
:options="options"
optionLabel="label"
optionValue="value"
class="!w-full !justify-items-center !items-center !justify-center "
class="!w-full !items-center !justify-center "
/>
</div>