This commit is contained in:
syuilo 2021-04-23 11:31:43 +09:00
parent ebb2fe068c
commit b5c8dc0fe3
1 changed files with 10 additions and 1 deletions

View File

@ -218,6 +218,8 @@ export default defineComponent({
$widgets-hide-threshold: 1200px;
$nav-icon-only-width: 78px; // TODO:
--panelShadow: none;
// 100vh ... https://css-tricks.com/the-trick-to-viewport-units-on-mobile/
min-height: calc(var(--vh, 1vh) * 100);
box-sizing: border-box;
@ -250,7 +252,7 @@ export default defineComponent({
display: flex;
justify-content: center;
max-width: 100%;
margin: 32px 0;
//margin: 32px 0;
&.fullView {
margin: 0;
@ -276,6 +278,8 @@ export default defineComponent({
width: 750px;
margin: 0 16px 0 0;
background: var(--bg);
box-shadow: 0 0 0 1px var(--divider);
border-radius: 0;
--margin: 12px;
> .header {
@ -308,12 +312,17 @@ export default defineComponent({
> .widgets {
//--panelShadow: none;
width: 300px;
margin-top: 16px;
@media (max-width: $widgets-hide-threshold) {
display: none;
}
}
> .sidebar {
margin-top: 16px;
}
@media (max-width: 850px) {
margin: 0;