From 2112448ae9c33965cf8e952135808872fd3f7ca6 Mon Sep 17 00:00:00 2001 From: N-Pex Date: Thu, 24 Jun 2021 13:01:15 +0200 Subject: [PATCH] Style "new room" Issue #67 --- src/assets/css/chat.scss | 13 +++++ src/components/RoomList.vue | 100 ++++++++++++++++++++++++------------ 2 files changed, 80 insertions(+), 33 deletions(-) diff --git a/src/assets/css/chat.scss b/src/assets/css/chat.scss index b8df5c1..efe659d 100644 --- a/src/assets/css/chat.scss +++ b/src/assets/css/chat.scss @@ -904,3 +904,16 @@ $admin-fg: white; opacity: 0.7; } } + +.new-room { + font-family: "Inter", sans-serif; + font-size: 16px !important; + font-weight: 600 !important; + text-decoration: underline; + color: black; + &::after { + content: "\00a0\00a0>"; + display: inline-block; + text-decoration: none !important; + } +} diff --git a/src/components/RoomList.vue b/src/components/RoomList.vue index 1011331..f09064c 100644 --- a/src/components/RoomList.vue +++ b/src/components/RoomList.vue @@ -1,39 +1,61 @@