diff --git a/web/src/ui/RoomView.css b/web/src/ui/RoomView.css
index f4c67c7..9739e18 100644
--- a/web/src/ui/RoomView.css
+++ b/web/src/ui/RoomView.css
@@ -3,10 +3,22 @@ div.room-view {
height: 100%;
display: grid;
grid-template:
- "header" 2rem
+ "header" 3rem
"messageview" 1fr
"input" 2rem
/ 1fr;
+
+ > div.room-header {
+ display: flex;
+ align-items: center;
+ gap: .5rem;
+ padding-left: 1rem;
+ border-bottom: 2px solid #ccc;
+
+ > span.room-name {
+ font-weight: bold;
+ }
+ }
}
form.message-composer {
diff --git a/web/src/ui/RoomView.tsx b/web/src/ui/RoomView.tsx
index 5b91b18..35dec2b 100644
--- a/web/src/ui/RoomView.tsx
+++ b/web/src/ui/RoomView.tsx
@@ -14,6 +14,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see