From f01858fb1ec9a18b430bf3048d0f79e839af4ad2 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 13 Apr 2024 08:20:30 +0200 Subject: [PATCH] feat(style): ensure full-width buttons in card blocks Adjusted button styles within card blocks to span the full width and tightened the margin at the top to just 1px. This enhancement improves consistency across UI components and enhances the visual appeal of card elements, making actions more obvious and accessible to users. --- src/pix360core/static/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pix360core/static/css/style.css b/src/pix360core/static/css/style.css index 81eecaf..57fb9f5 100644 --- a/src/pix360core/static/css/style.css +++ b/src/pix360core/static/css/style.css @@ -60,3 +60,8 @@ form { #panorama { height: 500px; } + +.card-block .btn { + width: 100%; + margin-top: 1px; +}