From c3e5c91c7f82785ba81593c22ad1263553c55c29 Mon Sep 17 00:00:00 2001 From: lasjorg <28780271+lasjorg@users.noreply.github.com> Date: Fri, 19 Jul 2024 20:33:22 +0200 Subject: [PATCH] fix(cash register): styles, allow large browser font sizes --- apps/cash-register/public/styles.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/cash-register/public/styles.css b/apps/cash-register/public/styles.css index 1e24e38a7..7e3999ae3 100644 --- a/apps/cash-register/public/styles.css +++ b/apps/cash-register/public/styles.css @@ -12,6 +12,7 @@ body { background-color: var(--dark-blue); color: var(--light-gray); + min-width: 320px; } main { @@ -98,10 +99,9 @@ label { display: flex; justify-content: space-around; border-radius: 35px 35px 0 0; - padding-top: 20px; + padding: 20px 0; background-color: #99c9ff; - height: 250px; - width: 325px; + min-height: 250px; } .btns-container { @@ -142,7 +142,7 @@ label { .bottom-register { background-color: #99c9ff; height: 50px; - width: 325px; + width: 100%; margin-top: 10px; }