From 69fce8e0b551b33905dbf34bfec018bd5150c058 Mon Sep 17 00:00:00 2001 From: Tom Puttemans Date: Sun, 12 Nov 2023 23:41:55 +0100 Subject: [PATCH] Subtle chat hide function animation --- style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/style.css b/style.css index c7faf0b..7178987 100644 --- a/style.css +++ b/style.css @@ -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 {