refactor: include themes in components folder

This commit is contained in:
Mo
2022-11-09 09:28:20 -06:00
parent ec7f915642
commit 711bea0166
11 changed files with 341 additions and 23 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;
}
}