diff options
-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> |