Skip to content

Commit

Permalink
Fix: reduce transition duration for accordion panel for quicker anima…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
aelassas committed Feb 14, 2025
1 parent a2c3cee commit 8c25d9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/assets/css/accordion.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ div.accordion-container span.accordion-active::after {
div.accordion-container div.panel {
max-height: 0;
overflow: hidden;
transition: max-height 0.31s ease-out;
transition: max-height 0.18s ease-out;
}

div.accordion-container div.panel-collapse {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/css/accordion.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ div.accordion-container span.accordion-active::after {
div.accordion-container div.panel {
max-height: 0;
overflow: hidden;
transition: max-height 0.31s ease-out;
transition: max-height 0.18s ease-out;
}

div.accordion-container div.panel-collapse {
Expand Down

0 comments on commit 8c25d9b

Please sign in to comment.