diff --git a/src/react-components/room/ChatSidebar.scss b/src/react-components/room/ChatSidebar.scss
index 7f9546a73d..f659f47139 100644
--- a/src/react-components/room/ChatSidebar.scss
+++ b/src/react-components/room/ChatSidebar.scss
@@ -29,7 +29,7 @@
:local(.message-group-label) {
color: theme.$darkgrey;
- font-size: theme.$font-size-2xs;
+ font-size: theme.$font-size-xs;
display: flex;
margin: 2px;
}
@@ -46,12 +46,16 @@
padding: 10px 16px;
max-width: 80%;
width: max-content;
- font-size: theme.$font-size-sm;
+ font-size: theme.$font-size-md;
img, video {
max-height: 240px;
border-radius: 18px;
}
+
+ a {
+ text-decoration: underline;
+ }
}
:local(.media) {
@@ -91,6 +95,18 @@
background-color: theme.$blue;
color: theme.$white;
align-self: flex-end;
+
+ a {
+ color: theme.$white;
+
+ &:hover {
+ color: theme.$white-hover;
+ }
+
+ &:active {
+ color: theme.$white-pressed;
+ }
+ }
}
}
diff --git a/src/react-components/room/ChatSidebar.stories.js b/src/react-components/room/ChatSidebar.stories.js
index 6358b4f458..ec9b3fcf7b 100644
--- a/src/react-components/room/ChatSidebar.stories.js
+++ b/src/react-components/room/ChatSidebar.stories.js
@@ -62,6 +62,15 @@ export const Base = () => (
timestamp={Date.now()}
messages={[{ type: "chat", body: '`console.log("Hello World")`' }]}
/>
+