* feat: create new header * test: add tests to view model * test: add tests to view * feat: add header to new room list * test(e2e): update RoomListView snapshot * test(e2e): add tests for room list header * refactor: minor code improvement
21 lines
438 B
Plaintext
21 lines
438 B
Plaintext
/*
|
|
* Copyright 2025 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_RoomListHeaderView {
|
|
height: 60px;
|
|
padding: 0 var(--cpd-space-3x);
|
|
|
|
h1 {
|
|
all: unset;
|
|
font: var(--cpd-font-body-lg-semibold);
|
|
}
|
|
|
|
button {
|
|
color: var(--cpd-color-icon-secondary);
|
|
}
|
|
}
|