Add support for different logo on dark mode

Fixes #1013

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/hugo-toha/toha/issues/1013?shareId=XXXX-XXXX-XXXX-XXXX).
This commit is contained in:
Emruz Hossain 2025-01-06 17:12:16 +06:00
parent 047bb517cb
commit edf3ba2583
4 changed files with 36 additions and 3 deletions

View file

@ -55,4 +55,22 @@ html[data-theme='dark'] {
.company-logo {
max-height: 100%;
width: auto;
}
}
.light-logo {
display: inline;
}
.dark-logo {
display: none;
}
html[data-theme='dark'] {
.light-logo {
display: none;
}
.dark-logo {
display: inline;
}
}