diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-31 11:13:02 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-31 11:13:02 +0900 |
| commit | 49f1f7194dfa2bd4313af488b199d3db50e87396 (patch) | |
| tree | 75bac0c1a9759dcc98fa5c61f283572c600c625a | |
| parent | fix(frontend): fix ad rendering of timeline (diff) | |
| download | sharkey-49f1f7194dfa2bd4313af488b199d3db50e87396.tar.gz sharkey-49f1f7194dfa2bd4313af488b199d3db50e87396.tar.bz2 sharkey-49f1f7194dfa2bd4313af488b199d3db50e87396.zip | |
🎨
| -rw-r--r-- | packages/frontend/src/ui/deck.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/ui/deck.vue b/packages/frontend/src/ui/deck.vue index 3de8137404..b45a79fd3a 100644 --- a/packages/frontend/src/ui/deck.vue +++ b/packages/frontend/src/ui/deck.vue @@ -27,7 +27,7 @@ SPDX-License-Identifier: AGPL-3.0-only v-for="id in ids" :ref="id" :key="id" - :class="$style.column" + :class="[$style.column, { '_shadow': withWallpaper }]" :column="columns.find(c => c.id === id)!" :isStacked="ids.length > 1" @headerWheel="onWheel" |