Skip to content

Commit

Permalink
fix(components): dynamic panels theme
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Jul 6, 2022
1 parent 78271b6 commit d1df0d3
Showing 1 changed file with 7 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,29 +1,23 @@
#navigation.section,
.section.tags, // legacy code pre-smart tags release
navigation {
#navigation {
flex: none !important;
width: 190px !important;
width: 10px !important;
transition: width 0.25s;
}

#navigation.section:hover,
.section.tags:hover, // legacy code pre-smart tags release
navigation:hover {
#navigation:hover {
flex: initial;
width: 250px !important;
width: 200px !important;
transition: width 0.25s;
}

.section.notes,
notes-view {
#items-column {
flex: none !important;
width: 270px !important;
transition: width 0.25s;
}

.section.notes:hover,
notes-view:hover {
#items-column:hover {
flex: initial;
width: 420px !important;
width: 380px !important;
transition: width 0.25s;
}

0 comments on commit d1df0d3

Please sign in to comment.