fix(sw-1897): show member price modal immediately * fix(sw-1897): show member price modal immediately * Make checkbox fully controlled * Remove action in the store that wasn't used Approved-by: Hrishikesh Vaipurkar
25 lines
354 B
CSS
25 lines
354 B
CSS
.modalContent {
|
|
display: grid;
|
|
gap: var(--Spacing-x3);
|
|
width: 100%;
|
|
}
|
|
|
|
.innerModalContent {
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
align-items: center;
|
|
justify-items: center;
|
|
}
|
|
|
|
.newPrice {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
align-items: center;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.modalContent {
|
|
width: 352px;
|
|
}
|
|
}
|