15 lines
232 B
CSS
15 lines
232 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: stretch;
|
|
gap: var(--mantine-space-lg);
|
|
}
|
|
.form-column {
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
}
|
|
.product-column {
|
|
flex-grow: 5;
|
|
}
|