mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
27 lines
457 B
SCSS
27 lines
457 B
SCSS
:root {
|
|
--aside-topbar-offset: 60px;
|
|
--aside-width: 34%;
|
|
--aside-min-width: 400px;
|
|
}
|
|
|
|
.main{
|
|
flex: 1 0;
|
|
height: inherit;
|
|
overflow: auto;
|
|
}
|
|
|
|
.aside{
|
|
width: var(--aside-width);
|
|
min-width: var(--aside-min-width);
|
|
height: 100dvh;
|
|
border-left: 1px solid rgba(17, 20, 24, 0.15);
|
|
height: inherit;
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.root {
|
|
display: flex;
|
|
height: calc(100dvh - var(--aside-topbar-offset));
|
|
} |