diff options
| author | woxtu <woxtup@gmail.com> | 2024-10-28 20:22:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-28 20:22:07 +0900 |
| commit | eecfac1dd933b65bee469a0a103d19f378d3fcef (patch) | |
| tree | 6f75e3a2913cc357a115a4abab33c6b9405c38ef /packages/frontend/src/components/MkAuthConfirm.vue | |
| parent | Update about-misskey.vue (diff) | |
| download | misskey-eecfac1dd933b65bee469a0a103d19f378d3fcef.tar.gz misskey-eecfac1dd933b65bee469a0a103d19f378d3fcef.tar.bz2 misskey-eecfac1dd933b65bee469a0a103d19f378d3fcef.zip | |
Remove undefined styles (#14858)
Diffstat (limited to 'packages/frontend/src/components/MkAuthConfirm.vue')
| -rw-r--r-- | packages/frontend/src/components/MkAuthConfirm.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkAuthConfirm.vue b/packages/frontend/src/components/MkAuthConfirm.vue index f5f6d7f6cc..f78d2d38f0 100644 --- a/packages/frontend/src/components/MkAuthConfirm.vue +++ b/packages/frontend/src/components/MkAuthConfirm.vue @@ -21,7 +21,7 @@ SPDX-License-Identifier: AGPL-3.0-only </div> <div :class="$style.headerText">{{ i18n.ts.pleaseSelectAccount }}</div> </div> - <div :class="$style.accountSelectorRoot"> + <div> <div :class="$style.accountSelectorLabel">{{ i18n.ts.selectAccount }}</div> <div :class="$style.accountSelectorList"> <template v-for="[id, user] in users"> @@ -63,7 +63,7 @@ SPDX-License-Identifier: AGPL-3.0-only </div> </div> <slot name="consentAdditionalInfo"></slot> - <div :class="$style.accountSelectorRoot"> + <div> <div :class="$style.accountSelectorLabel"> {{ i18n.ts._auth.scopeUser }} <button class="_textButton" @click="clickBackToAccountSelect">{{ i18n.ts.switchAccount }}</button> </div> |