fix(fusion_clock): split min(80vw,700px) into width+max-width to avoid Sass unit error

This commit is contained in:
gsinghpal
2026-05-14 07:23:49 -04:00
parent bd2c037a97
commit 878d05685c

View File

@@ -120,7 +120,8 @@ html, body {
}
.nfc-kiosk__result {
width: min(80vw, 700px);
width: 80vw;
max-width: 700px;
padding: 2.5rem 3rem;
border-radius: 1rem;
display: flex;
@@ -180,7 +181,8 @@ html, body {
border: 1px solid $nfc-border;
border-radius: 1rem;
padding: 2.5rem;
width: min(80vw, 700px);
width: 80vw;
max-width: 700px;
h2 { font-size: 1.5rem; margin: 0 0 1.5rem; }