39 lines
652 B
CSS
39 lines
652 B
CSS
.container {
|
|
display: flex;
|
|
//flex-direction: column;
|
|
gap: rem(10);
|
|
max-height: 95vh;
|
|
}
|
|
|
|
.container-disabled {
|
|
}
|
|
|
|
.products-list {
|
|
width: 60%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: rem(10);
|
|
flex: 2;
|
|
}
|
|
|
|
.deal-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: rem(10);
|
|
flex: 1;
|
|
}
|
|
|
|
.deal-container-wrapper {
|
|
border: dashed var(--item-border-size) var(--mantine-color-default-border);
|
|
border-radius: var(--item-border-radius);
|
|
padding: rem(10);
|
|
}
|
|
|
|
.deal-container-buttons {
|
|
gap: rem(10);
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: auto;
|
|
width: 100%;
|
|
}
|