feat: products and services on same page

This commit is contained in:
2024-05-27 00:02:13 +03:00
parent a50c5785ad
commit ae2bea24b8
14 changed files with 740 additions and 16 deletions

View File

@@ -0,0 +1,35 @@
.container {
display: flex;
//flex-direction: column;
gap: rem(10);
max-height: 95vh;
}
.products-list {
width: 60%;
display: flex;
flex-direction: column;
gap: rem(10);
}
.deal-container {
display: flex;
flex-direction: column;
height: 100%;
gap: rem(10);
}
.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%;
}