diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-05-22 21:22:25 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 02:22:25 +0200 |
commit | 5219fb700fb481bfbfa3a036d5c10fb7b834ade5 (patch) | |
tree | 9665e28cccee5ab877f2091ade542f4fdc731245 /src/plugins/typingIndicator.tsx | |
parent | 184c03b28e6df72f301f91862dc8bdfb5f074fcb (diff) | |
download | Vencord-5219fb700fb481bfbfa3a036d5c10fb7b834ade5.tar.gz Vencord-5219fb700fb481bfbfa3a036d5c10fb7b834ade5.tar.bz2 Vencord-5219fb700fb481bfbfa3a036d5c10fb7b834ade5.zip |
PermViewer: Add ability to change sort order; Properly center (#1182)
Diffstat (limited to 'src/plugins/typingIndicator.tsx')
-rw-r--r-- | src/plugins/typingIndicator.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/typingIndicator.tsx b/src/plugins/typingIndicator.tsx index bad95d2..2b4de82 100644 --- a/src/plugins/typingIndicator.tsx +++ b/src/plugins/typingIndicator.tsx @@ -89,7 +89,7 @@ function TypingIndicator({ channelId }: { channelId: string; }) { <Tooltip text={tooltipText!}> {({ onMouseLeave, onMouseEnter }) => ( <div - style={{ marginLeft: 6, zIndex: 0, cursor: "pointer" }} + style={{ marginLeft: 6, height: 16, display: "flex", alignItems: "center", zIndex: 0, cursor: "pointer" }} onMouseLeave={onMouseLeave} onMouseEnter={onMouseEnter} > |