25 lines
532 B
CSS
25 lines
532 B
CSS
.container {
|
|
border-radius: rem(40);
|
|
background-color: white;
|
|
@mixin dark {
|
|
background-color: var(--mantine-color-dark-8);
|
|
box-shadow: 5px 5px 30px 1px var(--mantine-color-dark-6);
|
|
}
|
|
@mixin light {
|
|
box-shadow: 5px 5px 24px rgba(0, 0, 0, 0.16);
|
|
}
|
|
padding: rem(35);
|
|
}
|
|
|
|
.container-full-height {
|
|
min-height: calc(100vh - (rem(20) * 2));
|
|
}
|
|
|
|
.container-full-height-fixed {
|
|
height: calc(100vh - (rem(20) * 2));
|
|
}
|
|
|
|
.container-no-border-radius {
|
|
border-radius: 0 !important;
|
|
}
|