refactor: directly include themes in web package (#1988)

This commit is contained in:
Mo
2022-11-09 11:21:26 -06:00
committed by GitHub
parent ac4882b357
commit 10a9889cf4
12 changed files with 341 additions and 25 deletions

View File

@@ -0,0 +1,22 @@
@media screen and (min-width: 768px) {
#navigation {
flex: none !important;
width: 10px !important;
transition: width 0.25s;
}
#navigation:hover {
flex: initial;
width: 200px !important;
transition: width 0.25s;
}
#items-column {
flex: none !important;
width: 270px !important;
transition: width 0.25s;
}
#items-column:hover {
flex: initial;
width: 380px !important;
transition: width 0.25s;
}
}