diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-10-10 19:07:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 19:07:55 -0700 |
commit | 32bf38940de5a179ca1b659eaa557f93cadc9458 (patch) | |
tree | 784ceb7588a30ee6e029de5e226fb292127999da /src/view | |
parent | 88f326b37f6ca35efbb8e5133cd99104d8855bf0 (diff) | |
download | voidsky-32bf38940de5a179ca1b659eaa557f93cadc9458.tar.zst |
Tweak threadgate button sizing in the composer on Web (#5692)
* Adjust threadgate btn sizing in composer * Tweak threadgate button size on web
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/com/composer/threadgate/ThreadgateBtn.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/com/composer/threadgate/ThreadgateBtn.tsx b/src/view/com/composer/threadgate/ThreadgateBtn.tsx index b0806180c..be2c52453 100644 --- a/src/view/com/composer/threadgate/ThreadgateBtn.tsx +++ b/src/view/com/composer/threadgate/ThreadgateBtn.tsx @@ -63,7 +63,10 @@ export function ThreadgateBtn({ label={label} accessibilityHint={_( msg`Opens a dialog to choose who can reply to this thread`, - )}> + )} + style={ + !isNative ? {paddingVertical: 6, paddingHorizontal: 8} : undefined + }> <ButtonIcon icon={anyoneCanInteract ? Earth : Group} /> <ButtonText>{label}</ButtonText> </Button> |