Minor fixes
Closed this issue · 1 comments
therealcoder1337 commented
- For the Layout with
view="lHh Lpr lFf"
, the right part of the QHeader becomes hidden once the drawer is opened. It can be fixed with a SCSS like:
.q-drawer--active ~ .q-header {
$drawer-width: 300px;
width: calc(100% - $drawer-width);
}
- We should change the body class indicating light or dark mode to
body--light
andbody--dark
, respectively.