diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-21 17:40:15 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-21 17:40:15 +0900 |
| commit | f6128dd3ff9ad4df1cbb956f46e2ea34d59368aa (patch) | |
| tree | c0c0612ab2ae8eb7ce8cc13ca5c26fba83350822 /src/client/components | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-f6128dd3ff9ad4df1cbb956f46e2ea34d59368aa.tar.gz sharkey-f6128dd3ff9ad4df1cbb956f46e2ea34d59368aa.tar.bz2 sharkey-f6128dd3ff9ad4df1cbb956f46e2ea34d59368aa.zip | |
:art:
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/notes.vue | 2 | ||||
| -rw-r--r-- | src/client/components/notifications.vue | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index ba3b7d2b39..919cb29952 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -118,6 +118,8 @@ export default defineComponent({ &:not(.noGap) { > .notes { + background: var(--bg); + .qtqtichx { background: var(--panel); border-radius: var(--radius); diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue index 9db47e08d6..e91f18a693 100644 --- a/src/client/components/notifications.vue +++ b/src/client/components/notifications.vue @@ -7,7 +7,7 @@ <p class="mfcuwfyp" v-else-if="empty">{{ $ts.noNotifications }}</p> <div v-else> - <XList class="notifications" :items="items" v-slot="{ item: notification }" :no-gap="true"> + <XList class="elsfgstc" :items="items" v-slot="{ item: notification }" :no-gap="true"> <XNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :note="notification.note" @update:note="noteUpdated(notification.note, $event)" :key="notification.id"/> <XNotification v-else :notification="notification" :with-time="true" :full="true" class="_panel notification" :key="notification.id"/> </XList> @@ -141,4 +141,8 @@ export default defineComponent({ text-align: center; color: var(--fg); } + +.elsfgstc { + background: var(--panel); +} </style> |