fix: fixes issue where Dynamic Theme did not properly work with new grid system

This commit is contained in:
Mo
2022-12-01 07:21:30 -06:00
parent 73ca12275f
commit 1726302615

View File

@@ -1,19 +1,26 @@
@media screen and (min-width: 768px) {
@media screen and (min-width: 1024px) {
#app {
display: flex;
}
#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;