mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-25 14:12:06 +08:00
18 lines
483 B
CSS
18 lines
483 B
CSS
/**
|
|
* Copyright (c) 2021-, Haibin Wen, sunnypilot, and a number of other contributors.
|
|
*
|
|
* This file is part of sunnypilot and is licensed under the MIT License.
|
|
* See the LICENSE.md file in the root directory for more details.
|
|
*/
|
|
|
|
/* Make the header logo larger */
|
|
.md-header__button.md-logo img {
|
|
height: 2.4rem;
|
|
width: auto;
|
|
}
|
|
|
|
/* Invert the white logo to dark on light mode */
|
|
[data-md-color-scheme="default"] .md-header__button.md-logo img {
|
|
filter: brightness(0);
|
|
}
|