Skip to content

Commit

Permalink
chore: made message author name thicker
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin Rohloff committed Sep 19, 2024
1 parent 2b023c6 commit ec41293
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/channel/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Message({ message }: MessageProps) {
)}
</div>
<div className="Message--content-container">
<p>{author.globalName}</p>
<p className="Message--author-name">{author.getName()}</p>

{gif !== null ? (
<img
Expand Down
4 changes: 4 additions & 0 deletions src/renderer/styles/channel/Message.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
white-space: pre-line;
}

.Message--author-name {
font-weight: 600;
}

.Message--attachments-container {
display: flex;
}
Expand Down

0 comments on commit ec41293

Please sign in to comment.