mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* 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
23 lines
379 B
SCSS
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;
|
|
}
|
|
} |