css: Properly raise z-indices on #main and #sidebar

refs #4082
This commit is contained in:
Johannes Meyer 2020-03-12 10:57:50 +01:00
parent 042325162b
commit 03a91891d4
1 changed files with 2 additions and 1 deletions

View File

@ -30,12 +30,13 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: relative; position: relative;
z-index: 1000; z-index: 2;
} }
#main { #main {
flex: 1; flex: 1;
display: flex; display: flex;
z-index: 1;
} }
.iframe { .iframe {