feat(event-detail): restructure layout and enhance styles for better responsiveness

This commit is contained in:
2026-09-23 11:48:24 -03:00
parent 9ba3b24b7e
commit 321f2c08cd
4 changed files with 68 additions and 41 deletions

View File

@@ -4,7 +4,7 @@
}
.btn {
min-height: 40px;
min-height: var(--app-button-min-height, 40px);
font-weight: 700;
font-size: 15px;
width: 100%;

View File

@@ -4,14 +4,14 @@
.quantity-selector {
border: 1px solid var(--border-color);
width: 78px;
width: var(--quantity-selector-width, 78px);
height: 40px;
min-height: 40px;
background-color: #ffffff;
box-sizing: border-box;
&__button {
width: 24px;
width: var(--quantity-selector-button-width, 24px);
height: 100%;
font-size: 20px;
color: #6f6f6f;
@@ -34,7 +34,7 @@
}
&__value {
font-size: 16px;
font-size: var(--quantity-selector-value-font-size, 16px);
color: #6f6f6f;
}