added twopanel directive

This commit is contained in:
booploops 2022-02-25 18:25:38 -08:00
parent d9081e0037
commit e4030c10c0
6 changed files with 189 additions and 47 deletions

View file

@ -0,0 +1,17 @@
#app.twopanel {
--chromeHeight1: 42px;
--chromeHeight2: 55px;
--chromeHeight: calc(var(--chromeHeight1) + var(--chromeHeight2));
.app-chrome {
.app-mainmenu {
width: 88px;
}
height: var(--chromeHeight1);
&.chrome-bottom {
height: var(--chromeHeight2);
.app-chrome--left {
padding-left: 32px;
}
}
}
}