Skip to content

Commit

Permalink
CSS: fix changing panel height (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit authored Aug 29, 2024
1 parent 1f94188 commit 150e582
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data/styles/Application.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
panel {
background-color: transparent;
transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
min-height: 16px;
}

panel > box {
/* Keep in sync with Panel.vala height request */
min-height: 30px;
/*Don't transition shadow etc to avoid visual issues with struts*/
transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
Expand Down

0 comments on commit 150e582

Please sign in to comment.