From 01a2c0631e2d3dbe348a2a0cc62c8912d64db2f4 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Wed, 8 Jan 2025 12:59:04 -0700 Subject: [PATCH] Fix account view button styling Account view buttons should be full width w/ min 300px on desktop, but always full width on portrait screens --- backend/static/css/account.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/static/css/account.css b/backend/static/css/account.css index 04bdd91..13d6199 100644 --- a/backend/static/css/account.css +++ b/backend/static/css/account.css @@ -1,6 +1,7 @@ .account-div button { - width: 300px; + min-width: 300px; margin-top: 10px; + width: 100%; } .upgrade-div, #subscription-div { @@ -166,6 +167,7 @@ label a { } .account-div button { + min-width: auto; width: 100%; } } @@ -214,4 +216,4 @@ label a { .btcpay-btn { background-color: #171720; } -} \ No newline at end of file +}