Icon size update
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user