From 1028cca194e3bfe62cc76e11ed7fc480b3c02b49 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 19:11:41 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Adjust=20layout=20and=20styling?= =?UTF-8?q?=20of=20file=20list=20and=20file=20details=20for=20improved=20r?= =?UTF-8?q?esponsiveness=20and=20readability?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/GamemasterManager.vue | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/code/websites/pokedex.online/src/views/GamemasterManager.vue b/code/websites/pokedex.online/src/views/GamemasterManager.vue index e649e11..fc42c81 100644 --- a/code/websites/pokedex.online/src/views/GamemasterManager.vue +++ b/code/websites/pokedex.online/src/views/GamemasterManager.vue @@ -590,7 +590,7 @@ h2 { .file-list { margin-top: 1rem; display: grid; - grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.75rem; } @@ -600,28 +600,35 @@ h2 { border-radius: 6px; border: 1px solid #e9ecef; display: flex; - justify-content: space-between; + flex-direction: column; align-items: center; - gap: 0.75rem; + text-align: center; + gap: 0.5rem; +} + +.file-download-btn { + align-self: center; + margin-bottom: 0.25rem; } .file-info { display: flex; flex-direction: column; - flex: 1; + gap: 0.25rem; + min-width: 0; } .file-name { font-weight: 500; color: #495057; - font-size: 0.9rem; + font-size: 0.85rem; word-break: break-word; + line-height: 1.2; } .file-size { color: #999; - font-size: 0.85rem; - margin-top: 0.25rem; + font-size: 0.8rem; } .btn-small {