gift: working on UI ans styles
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
.customerInformationCard {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.customerInformationCard > * {
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Reduce gap on small screens to prevent overflow */
|
||||
@media (max-width: 480px) {
|
||||
.customerInformationCard {
|
||||
gap: 8px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user