From 67c185097cd80ed240eea67224a7dd54ff0ed547 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Tue, 9 Apr 2024 01:43:40 +0300 Subject: [PATCH] Invert menu burger button in dark mode --- app/assets/stylesheets/common.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 900ade1b4..1f23a7565 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -81,6 +81,12 @@ time[title] { opacity: 0.6; } +@include color-mode(dark) { + #menu-icon { + filter: invert(1); + } +} + header { height: $headerHeight; position: relative; -- 2.39.5