hookshot/web/components/roomConfig/RoomConfig.module.scss
Will Hunt 30bb52fc59
Better support for dark mode in widgets (#863)
* Major package upgrades

* Update rust deps and fix a few things

* Drop 18 testing

* Use node 20

* lint rust

* lint

* changelog

* Drop usage of SVGs, use compound elements.

* Update widget API

* Drop usage of SVGs, use compound elements.

* Add dark mode for widgets

* changelog

* Remove yarn-error.log
2023-12-22 15:44:00 +00:00

23 lines
379 B
SCSS

.header {
display: flex;
flex-direction: row;
align-items: flex-start;
img {
width: 52px;
height: 52px;
}
@media (prefers-color-scheme: dark) {
img.invert {
filter: invert(100%);
}
}
h1 {
margin-left: 10px;
font-weight: 600;
font-size: 18px;
line-height: 24px;
}
}