From 929a1d4d000fbe6151935fcd8ceb125a5c713e50 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Thu, 18 Dec 2025 11:38:40 +0100 Subject: [PATCH] style: set font spacing and font feature settings --- modules/restricted-guests/element-web/src/RoomPreviewBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/restricted-guests/element-web/src/RoomPreviewBar.tsx b/modules/restricted-guests/element-web/src/RoomPreviewBar.tsx index 1d3317a4b0..75a2b9741e 100644 --- a/modules/restricted-guests/element-web/src/RoomPreviewBar.tsx +++ b/modules/restricted-guests/element-web/src/RoomPreviewBar.tsx @@ -26,6 +26,8 @@ interface RoomPreviewBarProps { const Container = styled.aside` margin: auto; font: var(--cpd-font-body-md-regular); + letter-spacing: var(--cpd-font-letter-spacing-body-md); + font-feature-settings: normal; `; const RoomPreviewBar: FC = ({ api, config, roomId, roomAlias, promptAskToJoin, children }) => {