Fix mobile status indicators cutting off. (#3206)

This commit is contained in:
Robert Dyer
2024-08-05 20:10:10 -05:00
committed by GitHub
parent 7b77f60458
commit 5ba80fcbdc
3 changed files with 8 additions and 0 deletions

View File

@@ -116,6 +116,7 @@ function AccountName({ account, pending, failed }) {
width: 8,
height: 8,
borderRadius: 8,
flexShrink: 0,
backgroundColor: pending
? theme.sidebarItemBackgroundPending
: failed

View File

@@ -112,6 +112,7 @@ function AccountCard({
: theme.sidebarItemBackgroundPositive,
marginRight: '8px',
width: 8,
flexShrink: 0,
height: 8,
borderRadius: 8,
opacity: connected ? 1 : 0,

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [psybers]
---
Fix mobile account status indicators cutting off.