From ead6103dfb6d9bd65254cbb1669d358e5f1bec77 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 20:01:31 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Improve=20button=20styling=20wit?= =?UTF-8?q?h=20updated=20colors,=20border=20radius,=20font=20weight,=20hov?= =?UTF-8?q?er=20effects,=20and=20transitions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pokedex.online/src/views/GamemasterExplorer.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue index 656ccbd..a4b71ec 100644 --- a/code/websites/pokedex.online/src/views/GamemasterExplorer.vue +++ b/code/websites/pokedex.online/src/views/GamemasterExplorer.vue @@ -1136,23 +1136,28 @@ onMounted(() => { .btn-action { padding: 0.75rem 1rem; - background: #2980b9; + background: #667eea; color: #ffffff; border: none; - border-radius: 8px; + border-radius: 6px; cursor: pointer; font-size: 1rem; + font-weight: 600; min-height: 44px; + transition: all 0.3s ease; } .btn-action:hover { - background: #21618c; + background: #5568d3; + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); } .btn-action:disabled { background: #95a5a6; color: #ffffff; cursor: not-allowed; + opacity: 0.6; } /* Toast */