summaryrefslogtreecommitdiffhomepage
path: root/packages/console/app/src/component/header.tsx
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2025-10-30 12:46:34 +0000
committerDavid Hill <[email protected]>2025-10-30 12:46:34 +0000
commit0abffdb8f886a06ce17811758d740fe9f3d2e38b (patch)
tree4477ae601a5a696a02f5380ff17562eeb2a646da /packages/console/app/src/component/header.tsx
parente533d48b517c5c60e7a9561e416f6a7c691621a3 (diff)
downloadopencode-0abffdb8f886a06ce17811758d740fe9f3d2e38b.tar.gz
opencode-0abffdb8f886a06ce17811758d740fe9f3d2e38b.zip
Icon size update
Diffstat (limited to 'packages/console/app/src/component/header.tsx')
-rw-r--r--packages/console/app/src/component/header.tsx42
1 files changed, 36 insertions, 6 deletions
diff --git a/packages/console/app/src/component/header.tsx b/packages/console/app/src/component/header.tsx
index 7b6edea22..05195f20c 100644
--- a/packages/console/app/src/component/header.tsx
+++ b/packages/console/app/src/component/header.tsx
@@ -126,18 +126,48 @@ export function Header(props: { zen?: boolean }) {
style={`left: ${store.contextMenuPosition.x}px; top: ${store.contextMenuPosition.y}px;`}
>
<button class="context-menu-item" onClick={copyLogoToClipboard}>
- <img data-slot="copy light" src={copyLogoLight} alt="Logo" />
- <img data-slot="copy dark" src={copyLogoDark} alt="Logo" />
+ <img
+ data-slot="copy light"
+ src={copyLogoLight}
+ style="width: 22px; height: 26px;"
+ alt="Logo"
+ />
+ <img
+ data-slot="copy dark"
+ src={copyLogoDark}
+ style="width: 22px; height: 26px;"
+ alt="Logo"
+ />
Copy logo as SVG
</button>
<button class="context-menu-item" onClick={copyWordmarkToClipboard}>
- <img data-slot="copy light" src={copyWordmarkLight} alt="Wordmark" />
- <img data-slot="copy dark" src={copyWordmarkDark} alt="Wordmark" />
+ <img
+ data-slot="copy light"
+ src={copyWordmarkLight}
+ style="width: 22px; height: 26px;"
+ alt="Wordmark"
+ />
+ <img
+ data-slot="copy dark"
+ src={copyWordmarkDark}
+ style="width: 22px; height: 26px;"
+ alt="Wordmark"
+ />
Copy wordmark as SVG
</button>
<button class="context-menu-item" onClick={() => (window.location.href = "/brand")}>
- <img data-slot="copy light" src={copyBrandAssetsLight} alt="Brand Assets" />
- <img data-slot="copy dark" src={copyBrandAssetsDark} alt="Brand Assets" />
+ <img
+ data-slot="copy light"
+ src={copyBrandAssetsLight}
+ style="width: 22px; height: 26px;"
+ alt="Brand Assets"
+ />
+ <img
+ data-slot="copy dark"
+ src={copyBrandAssetsDark}
+ style="width: 22px; height: 26px;"
+ alt="Brand Assets"
+ />
Brand assets
</button>
</div>