diff options
author | 2025-02-09 19:22:41 +0800 | |
---|---|---|
committer | 2025-02-09 12:22:41 +0100 | |
commit | 42bbbaadb2d83ba1849a659ca91cd0f31632fc55 (patch) | |
tree | acd9c845078ed38cecadeaacc691059e347ed251 /web/source/css/index.css | |
parent | [bugfix] Reduce Web Push record size (#3762) (diff) | |
download | gotosocial-42bbbaadb2d83ba1849a659ca91cd0f31632fc55.tar.xz |
[feature/frontend] add light mode color scheme of base css, adapt to prefers-color-scheme (#3765)
Diffstat (limited to 'web/source/css/index.css')
-rw-r--r-- | web/source/css/index.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/source/css/index.css b/web/source/css/index.css index 9f8e662d4..a7c18c6dd 100644 --- a/web/source/css/index.css +++ b/web/source/css/index.css @@ -70,6 +70,10 @@ .activitypub-logo { background: $fg; + /* light mode */ + @media (prefers-color-scheme: light) { + background: none; + } box-shadow: $boxshadow; border-radius: $br; max-width: 100%; |