summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/MultiActionButton.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/components/MultiActionButton.tsx11
1 files changed, 7 insertions, 4 deletions
diff --git a/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx b/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
index 70d53640d..977ac557d 100644
--- a/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
+++ b/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
@@ -69,18 +69,21 @@ export function MultiActionButton({
))}
</div>
)}
- <ButtonPrimary
+ <ButtonBoxPrimary
onClick={() => doClick(selected)}
style={{
borderTopRightRadius: 0,
borderBottomRightRadius: 0,
marginRight: 0,
+ maxWidth: 170,
+ overflowX: "hidden",
+ textOverflow: "ellipsis",
}}
>
{label(selected)}
- </ButtonPrimary>
+ </ButtonBoxPrimary>
- <ButtonBoxPrimary
+ <ButtonPrimary
onClick={() => setOpened((s) => !s)}
style={{
marginLeft: 0,
@@ -89,7 +92,7 @@ export function MultiActionButton({
}}
>
<img style={{ height: 14 }} src={arrowDown} />
- </ButtonBoxPrimary>
+ </ButtonPrimary>
</div>
);
}