Minor CSS fixes for the new room list (#29334)

* refactor: use `var(--cpd-border-width-1)` instead of `1px`

* refactor: use header font in header
This commit is contained in:
Florian Duros
2025-02-24 19:59:26 +01:00
committed by GitHub
parent efc6149a8b
commit 14e3a77dc2
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@@ -11,7 +11,7 @@
h1 { h1 {
all: unset; all: unset;
font: var(--cpd-font-body-lg-semibold); font: var(--cpd-font-heading-sm-semibold);
} }
button { button {

View File

@@ -9,7 +9,7 @@
/* From figma, this should be aligned with the room header */ /* From figma, this should be aligned with the room header */
height: 64px; height: 64px;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 1px solid var(--cpd-color-bg-subtle-primary); border-bottom: var(--cpd-border-width-1) solid var(--cpd-color-bg-subtle-primary);
padding: 0 var(--cpd-space-3x); padding: 0 var(--cpd-space-3x);
svg { svg {