diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-16 10:58:06 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-16 10:58:06 +0900 |
| commit | c2940fd77cba7b0cf912db9fda92e66dbce9110f (patch) | |
| tree | 1ac1df00c5ea467af720e2c96bf3517d4d1d59b3 /packages/frontend/src/components/MkInfo.vue | |
| parent | refactor (diff) | |
| download | misskey-c2940fd77cba7b0cf912db9fda92e66dbce9110f.tar.gz misskey-c2940fd77cba7b0cf912db9fda92e66dbce9110f.tar.bz2 misskey-c2940fd77cba7b0cf912db9fda92e66dbce9110f.zip | |
enhance(frontend): improve usability on touch device
Diffstat (limited to 'packages/frontend/src/components/MkInfo.vue')
| -rw-r--r-- | packages/frontend/src/components/MkInfo.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkInfo.vue b/packages/frontend/src/components/MkInfo.vue index 90ca1b5a9d..f114ec8a71 100644 --- a/packages/frontend/src/components/MkInfo.vue +++ b/packages/frontend/src/components/MkInfo.vue @@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only --> <template> -<div :class="[$style.root, { [$style.warn]: warn }]"> +<div :class="[$style.root, { [$style.warn]: warn }]" class="_selectable"> <i v-if="warn" class="ti ti-alert-triangle" :class="$style.i"></i> <i v-else class="ti ti-info-circle" :class="$style.i"></i> <div><slot></slot></div> |