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:
parent
047bb517cb
commit
edf3ba2583
4 changed files with 36 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue