diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-16 22:16:01 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-16 22:16:01 +0900 |
| commit | a3f3ef4226ae966e95540d96c4dfe4336ded2466 (patch) | |
| tree | 8f0083d75af38cb62707e86134ee0e59a3545f07 | |
| parent | chore(client): tweak style (diff) | |
| download | misskey-a3f3ef4226ae966e95540d96c4dfe4336ded2466.tar.gz misskey-a3f3ef4226ae966e95540d96c4dfe4336ded2466.tar.bz2 misskey-a3f3ef4226ae966e95540d96c4dfe4336ded2466.zip | |
chore(client): tweak style
| -rw-r--r-- | packages/client/src/components/note-detailed.vue | 2 | ||||
| -rw-r--r-- | packages/client/src/pages/settings/profile.vue | 4 | ||||
| -rw-r--r-- | packages/client/src/ui/_common_/navbar.vue | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/packages/client/src/components/note-detailed.vue b/packages/client/src/components/note-detailed.vue index c05ab7fec4..85bffca4a5 100644 --- a/packages/client/src/components/note-detailed.vue +++ b/packages/client/src/components/note-detailed.vue @@ -390,7 +390,7 @@ if (appearNote.replyId) { > .article { padding: 32px; - font-size: 1.1em; + font-size: 1.2em; > .header { display: flex; diff --git a/packages/client/src/pages/settings/profile.vue b/packages/client/src/pages/settings/profile.vue index 121709f127..f30b0ccbdc 100644 --- a/packages/client/src/pages/settings/profile.vue +++ b/packages/client/src/pages/settings/profile.vue @@ -39,10 +39,10 @@ <div class="_formRoot"> <FormSplit v-for="(record, i) in fields" :min-width="250" class="_formBlock"> - <FormInput v-model="record.name"> + <FormInput v-model="record.name" small> <template #label>{{ i18n.ts._profile.metadataLabel }} #{{ i + 1 }}</template> </FormInput> - <FormInput v-model="record.value"> + <FormInput v-model="record.value" small> <template #label>{{ i18n.ts._profile.metadataContent }} #{{ i + 1 }}</template> </FormInput> </FormSplit> diff --git a/packages/client/src/ui/_common_/navbar.vue b/packages/client/src/ui/_common_/navbar.vue index 3eb8c5a37c..e18f89113f 100644 --- a/packages/client/src/ui/_common_/navbar.vue +++ b/packages/client/src/ui/_common_/navbar.vue @@ -44,7 +44,7 @@ <button v-tooltip.noDelay.right="i18n.ts.note" class="item _button post" data-cy-open-post-form @click="os.post"> <i class="icon fas fa-pencil-alt fa-fw"></i><span class="text">{{ i18n.ts.note }}</span> </button> - <button v-click-anime v-tooltip.noDelay.right="i18n.ts.account" class="item _button account" @click="openAccountMenu"> + <button v-click-anime v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="item _button account" @click="openAccountMenu"> <MkAvatar :user="$i" class="avatar"/><MkAcct class="text" :user="$i"/> </button> </div> |