summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-07-16 22:16:01 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-07-16 22:16:01 +0900
commita3f3ef4226ae966e95540d96c4dfe4336ded2466 (patch)
tree8f0083d75af38cb62707e86134ee0e59a3545f07
parentchore(client): tweak style (diff)
downloadmisskey-a3f3ef4226ae966e95540d96c4dfe4336ded2466.tar.gz
misskey-a3f3ef4226ae966e95540d96c4dfe4336ded2466.tar.bz2
misskey-a3f3ef4226ae966e95540d96c4dfe4336ded2466.zip
chore(client): tweak style
-rw-r--r--packages/client/src/components/note-detailed.vue2
-rw-r--r--packages/client/src/pages/settings/profile.vue4
-rw-r--r--packages/client/src/ui/_common_/navbar.vue2
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>