diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-30 00:50:45 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-30 00:50:45 +0900 |
| commit | 1ac1a968b9edd801aa13e8dae56ca378744d9e2e (patch) | |
| tree | 858fc2a3f93db6590334e1056fc4a93814c8cfcc /src/client/ui | |
| parent | add todo (diff) | |
| download | sharkey-1ac1a968b9edd801aa13e8dae56ca378744d9e2e.tar.gz sharkey-1ac1a968b9edd801aa13e8dae56ca378744d9e2e.tar.bz2 sharkey-1ac1a968b9edd801aa13e8dae56ca378744d9e2e.zip | |
refactor components
Diffstat (limited to 'src/client/ui')
| -rw-r--r-- | src/client/ui/_common_/sidebar.vue | 2 | ||||
| -rw-r--r-- | src/client/ui/chat/note-preview.vue | 2 | ||||
| -rw-r--r-- | src/client/ui/chat/note.sub.vue | 2 | ||||
| -rw-r--r-- | src/client/ui/chat/note.vue | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/client/ui/_common_/sidebar.vue b/src/client/ui/_common_/sidebar.vue index 9817a46e30..4bb7bbd985 100644 --- a/src/client/ui/_common_/sidebar.vue +++ b/src/client/ui/_common_/sidebar.vue @@ -395,7 +395,7 @@ export default defineComponent({ left: 0; right: 0; bottom: 0; - border-radius: 8px; + border-radius: 999px; background: var(--accentedBg); } } diff --git a/src/client/ui/chat/note-preview.vue b/src/client/ui/chat/note-preview.vue index 77949e314b..beb38de644 100644 --- a/src/client/ui/chat/note-preview.vue +++ b/src/client/ui/chat/note-preview.vue @@ -6,7 +6,7 @@ <div class="body"> <p v-if="note.cw != null" class="cw"> <span class="text" v-if="note.cw != ''">{{ note.cw }}</span> - <XCwButton v-model:value="showContent" :note="note"/> + <XCwButton v-model="showContent" :note="note"/> </p> <div class="content" v-show="note.cw == null || showContent"> <XSubNote-content class="text" :note="note"/> diff --git a/src/client/ui/chat/note.sub.vue b/src/client/ui/chat/note.sub.vue index bb528dd936..a284ba2bf4 100644 --- a/src/client/ui/chat/note.sub.vue +++ b/src/client/ui/chat/note.sub.vue @@ -7,7 +7,7 @@ <div class="body"> <p v-if="note.cw != null" class="cw"> <Mfm v-if="note.cw != ''" class="text" :text="note.cw" :author="note.user" :i="$i" :custom-emojis="note.emojis" /> - <XCwButton v-model:value="showContent" :note="note"/> + <XCwButton v-model="showContent" :note="note"/> </p> <div class="content" v-show="note.cw == null || showContent"> <XSubNote-content class="text" :note="note"/> diff --git a/src/client/ui/chat/note.vue b/src/client/ui/chat/note.vue index 6d2b9bbf54..26d44d26aa 100644 --- a/src/client/ui/chat/note.vue +++ b/src/client/ui/chat/note.vue @@ -42,7 +42,7 @@ <div class="body"> <p v-if="appearNote.cw != null" class="cw"> <Mfm v-if="appearNote.cw != ''" class="text" :text="appearNote.cw" :author="appearNote.user" :i="$i" :custom-emojis="appearNote.emojis"/> - <XCwButton v-model:value="showContent" :note="appearNote"/> + <XCwButton v-model="showContent" :note="appearNote"/> </p> <div class="content" :class="{ collapsed }" v-show="appearNote.cw == null || showContent"> <div class="text"> |