From d3b4b70bfc4b86ba283b46b4fb95954450854190 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 14 Aug 2021 22:35:15 +0900 Subject: :art: --- src/client/components/date-separated-list.vue | 4 ++-- src/client/components/notes.vue | 12 +++++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'src/client/components') diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 7a4cc5ef98..fa0b6d669c 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -93,13 +93,13 @@ export default defineComponent({ }); return h(this.$store.state.animation ? TransitionGroup : 'div', this.$store.state.animation ? { - class: 'sqadhkmv' + (this.noGap ? ' noGap _block' : ''), + class: 'sqadhkmv' + (this.noGap ? ' noGap' : ''), name: 'list', tag: 'div', 'data-direction': this.direction, 'data-reversed': this.reversed ? 'true' : 'false', } : { - class: 'sqadhkmv' + (this.noGap ? ' noGap _block' : ''), + class: 'sqadhkmv' + (this.noGap ? ' noGap' : ''), }, { default: renderChildren }); diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index e90102921a..560441ba67 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -9,7 +9,7 @@
{{ $ts.noNotes }}
-
+
@@ -17,8 +17,8 @@
- - + +
@@ -108,4 +108,10 @@ export default defineComponent({ .fade-leave-to { opacity: 0; } + +.giivymft { + > .notes { + background: var(--panel); + } +} -- cgit v1.2.3-freya