tag-browser: Draw main ui over the sidebar on narrow screens

This commit is contained in:
MrOtherGuy
2023-02-25 12:09:19 +02:00
parent e129aa349c
commit fea39ad68a
3 changed files with 26 additions and 7 deletions

View File

@@ -165,16 +165,29 @@ pre > div{
display: none;
}
.categoryList{
opacity: 0.6;
}
#ui.no-content > #categories{
opacity: 1;
}
#site{
background-color: rgb(60,50,70);
min-height: 100vh;
border-inline-start: 1px solid gold;
box-shadow: 0 0 26px 0 black;
}
#ui > #site{
margin-left: 7ch;
position: relative;
z-index: 2;
}
#ui.no-content > #site{
z-index: -1;
}
.banner{
display: none;
}
#site{
background-color: rgb(60,50,70);
}
#ui > #site{ margin-left: 22ch }
#targets{
position: relative;
#ui.no-content > #site > .banner{
display: block;
}
}