Skip to content

Commit b578b72

Browse files
authored
fix(app): increase open-in icon size (anomalyco#46540)
1 parent bbe4c95 commit b578b72

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/app/src/components/session/open-in-app-v2.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ export function OpenInAppV2(props: { directory: () => string }) {
3131
disabled={state.opening()}
3232
aria-label={language.t("session.header.open.ariaLabel", { app: state.current().label })}
3333
>
34-
<Show when={state.opening()} fallback={<AppIcon id={state.current().icon} class="size-[18px]" />}>
34+
<Show
35+
when={state.opening()}
36+
fallback={<AppIcon id={state.current().icon} style={{ width: "20px", height: "20px" }} />}
37+
>
3538
<Spinner class="size-3.5" />
3639
</Show>
3740
</SplitButtonV2Action>

0 commit comments

Comments
 (0)