From 2195ea55c0ecea0aee540c44a6e5cf539f1af4d7 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 1 Feb 2026 20:28:16 +0100 Subject: [PATCH] List styles changed --- frontend/src/components/CharacterList.vue | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/CharacterList.vue b/frontend/src/components/CharacterList.vue index 9c7c83d..eeebbb3 100644 --- a/frontend/src/components/CharacterList.vue +++ b/frontend/src/components/CharacterList.vue @@ -23,7 +23,7 @@
- {{ $t('characters.list.owned_characters_title') }} +
{{ $t('characters.list.owned_characters_title') }}

{{ character.name }}

@@ -40,7 +40,7 @@
- {{ $t('characters.list.shared_characters_title') }} +
{{ $t('characters.list.shared_characters_title') }}

{{ character.name }}

@@ -191,7 +191,7 @@ export default { .horizontal-placement { display: flex; - gap: 20px; + gap: 10px; align-items: flex-start; } @@ -200,6 +200,19 @@ export default { min-width: 0; display: flex; flex-direction: column; + max-height: calc(100vh - 15px - 300px); + overflow-y: auto; +} + +.charlist-header { + font-size: 1.25rem; + font-weight: 600; + color: #333; + padding: 12px 20px; + background: #f8f9fa; + border-bottom: 2px solid #dee2e6; + margin-bottom: 0; + flex-shrink: 0; } /* Responsive Design */