chore: 🎨 format
This commit is contained in:
parent
5ecd33b6ec
commit
5d38558e8a
|
@ -46,7 +46,12 @@
|
||||||
}}</MkButton>
|
}}</MkButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button class="_button" :class="$style.close" @click="close" :aria-label="i18n.t('close')">
|
<button
|
||||||
|
class="_button"
|
||||||
|
:class="$style.close"
|
||||||
|
@click="close"
|
||||||
|
:aria-label="i18n.t('close')"
|
||||||
|
>
|
||||||
<i class="ph-x ph-bold ph-lg"></i>
|
<i class="ph-x ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -26,7 +26,11 @@
|
||||||
></i>
|
></i>
|
||||||
<span>{{ pageMetadata?.value.title }}</span>
|
<span>{{ pageMetadata?.value.title }}</span>
|
||||||
</span>
|
</span>
|
||||||
<button class="_button" @click="$refs.modal.close()" :aria-label="i18n.t('close')">
|
<button
|
||||||
|
class="_button"
|
||||||
|
@click="$refs.modal.close()"
|
||||||
|
:aria-label="i18n.t('close')"
|
||||||
|
>
|
||||||
<i class="ph-x ph-bold ph-lg"></i>
|
<i class="ph-x ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,7 +14,11 @@
|
||||||
@update:modelValue="onInput(i, $event)"
|
@update:modelValue="onInput(i, $event)"
|
||||||
>
|
>
|
||||||
</MkInput>
|
</MkInput>
|
||||||
<button class="_button" @click="remove(i)" :aria-label="i18n.t('remove')">
|
<button
|
||||||
|
class="_button"
|
||||||
|
@click="remove(i)"
|
||||||
|
:aria-label="i18n.t('remove')"
|
||||||
|
>
|
||||||
<i class="ph-x ph-bold ph-lg"></i>
|
<i class="ph-x ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -84,7 +84,11 @@
|
||||||
<div v-if="quoteId" class="with-quote">
|
<div v-if="quoteId" class="with-quote">
|
||||||
<i class="ph-quotes ph-bold ph-lg"></i>
|
<i class="ph-quotes ph-bold ph-lg"></i>
|
||||||
{{ i18n.ts.quoteAttached
|
{{ i18n.ts.quoteAttached
|
||||||
}}<button class="_button" @click="quoteId = null" :aria-label="i18n.t('removeQuote')">
|
}}<button
|
||||||
|
class="_button"
|
||||||
|
@click="quoteId = null"
|
||||||
|
:aria-label="i18n.t('removeQuote')"
|
||||||
|
>
|
||||||
<i class="ph-x ph-bold ph-lg"></i>
|
<i class="ph-x ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -93,7 +97,11 @@
|
||||||
<div class="visibleUsers">
|
<div class="visibleUsers">
|
||||||
<span v-for="u in visibleUsers" :key="u.id">
|
<span v-for="u in visibleUsers" :key="u.id">
|
||||||
<MkAcct :user="u" />
|
<MkAcct :user="u" />
|
||||||
<button class="_button" @click="removeVisibleUser(u)" :aria-label="i18n.t('removeRecipient')">
|
<button
|
||||||
|
class="_button"
|
||||||
|
@click="removeVisibleUser(u)"
|
||||||
|
:aria-label="i18n.t('removeRecipient')"
|
||||||
|
>
|
||||||
<i class="ph-x ph-bold ph-lg"></i>
|
<i class="ph-x ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue