diff options
Diffstat (limited to 'static/pages/login/index.css')
| -rw-r--r-- | static/pages/login/index.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/static/pages/login/index.css b/static/pages/login/index.css index aa6726e..f4a99ba 100644 --- a/static/pages/login/index.css +++ b/static/pages/login/index.css @@ -3,6 +3,15 @@ overflow: hidden; width: 100%; height: 100%; + z-index: 1000; + position: absolute; + top: 0; + bottom: 0; + transition: top 0.2s ease; +} + +#container.hidden { + top: -100%; } #box { @@ -15,7 +24,7 @@ padding: 0px; box-shadow: #223223aa 1px 1px 4px; border-radius: var(--border-radius); - z-index: 2000; + z-index: 5000; display: grid; grid-template-columns: auto 30px; background: #ffffff99; |