Skip to content

Commit

Permalink
adjusted text size in server channels & typing status
Browse files Browse the repository at this point in the history
  • Loading branch information
SupertigerDev committed Dec 10, 2023
1 parent c7dacf0 commit 01f742e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/message-pane/MessagePane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ function TypingIndicator() {
"margin-bottom": "5px",
"z-index": "1"
}}>
<Text size={paneWidth()! < 500 ? 10 : 12}>
<Text size={paneWidth()! < 500 ? 12 : 14}>
<Switch>
<Match when={typingUsers().length === 1}>
<strong>{typingUsers()[0]?.username}</strong> is typing...
Expand Down
4 changes: 2 additions & 2 deletions src/components/servers/drawer/ServerDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const ChannelIcon = (props: { icon?: string; type?: ChannelType; hovered?
}

const ChannelContainer = styled(ItemContainer)`
height: 32px;
height: 34px;
padding-left: 10px;
gap: 5px;
Expand All @@ -111,7 +111,7 @@ const ChannelContainer = styled(ItemContainer)`
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
font-size: 16px;
color: white;
}
&:hover .label {
Expand Down

0 comments on commit 01f742e

Please sign in to comment.