Add rectangular shape to button (#9382)

This commit is contained in:
Samuel Newman
2025-11-13 00:35:34 +02:00
committed by GitHub
parent 68a4d84450
commit e663e824b7
7 changed files with 43 additions and 9 deletions
@@ -500,9 +500,14 @@ function OwnHandlePage({goToServiceHandle}: {goToServiceHandle: () => void}) {
value={currentAccount?.did ?? ''}
label={_(msg`Copy DID`)}
size="large"
variant="solid"
shape="rectangular"
color="secondary"
style={[a.px_md, a.border, t.atoms.border_contrast_low]}>
style={[
a.px_md,
a.border,
t.atoms.border_contrast_low,
t.atoms.bg_contrast_25,
]}>
<Text style={[a.text_md, a.flex_1]}>{currentAccount?.did}</Text>
<ButtonIcon icon={CopyIcon} />
</CopyButton>