Skip to content

Commit

Permalink
Subtle chat hide function animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Glodenox committed Nov 12, 2023
1 parent ed72568 commit 69fce8e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,16 @@ body.reverse-order #settings {
align-items: center;
justify-content: center;
text-align: center;
opacity: 1;
animation: curtain 1s;
}
#curtain.hidden {
opacity: 0;
}

@keyframes curtain {
from { opacity: 0; }
to { opacity: 1; }
}

body.show-message-entry:not(.reverse-order) #commands {
Expand Down

0 comments on commit 69fce8e

Please sign in to comment.