Config height fix

This commit is contained in:
Yiğit FINDIKLI 2021-12-21 11:10:07 +03:00
parent 0f16970a3a
commit 0c82b6c4e2
2 changed files with 4 additions and 4 deletions

View File

@ -187,8 +187,8 @@ a {
top: 5rem; top: 5rem;
min-width: 15rem; min-width: 15rem;
display: none; display: none;
-webkit-animation: fadein 0.15s linear; -webkit-animation: scalein 0.15s linear;
animation: fadein 0.15s linear; animation: scalein 0.15s linear;
} }
.layout-topbar .layout-topbar-menu.layout-topbar-menu-mobile-active { .layout-topbar .layout-topbar-menu.layout-topbar-menu-mobile-active {
display: block; display: block;
@ -363,7 +363,7 @@ a {
.layout-config .layout-config-content { .layout-config .layout-config-content {
position: relative; position: relative;
overflow: auto; overflow: auto;
height: calc(100vh - 5rem); height: 100vh;
padding: 2rem; padding: 2rem;
} }
.layout-config .config-scale { .layout-config .config-scale {

View File

@ -58,7 +58,7 @@
.layout-config-content { .layout-config-content {
position: relative; position: relative;
overflow: auto; overflow: auto;
height: calc(100vh - 5rem); height: 100vh;
padding: 2rem; padding: 2rem;
} }