Skip to content

Commit

Permalink
img sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
nialexsan committed Dec 20, 2024
1 parent 315eb46 commit 418d9b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ export default function Header({fund}: {fund?: boolean}) {
style={{width: "100%"}}
src={`/flow-faucet-logo-${publicConfig.network}.svg`}
alt="Flow"
width={350}
height={85}
/>
</Link>

Expand Down
2 changes: 1 addition & 1 deletion components/LoadingFeedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function LoadingFeedback({
}) {
return (
<Box sx={styles.loading}>
<Image src="loading.svg" alt="loading" />
<Image src="loading.svg" alt="loading" height={74} width={74} />
<br />
{children}
</Box>
Expand Down
2 changes: 2 additions & 0 deletions components/NetworkLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export default function NetworkLinks() {
}
alt={`${NETWORK_DISPLAY_NAME} Faucet`}
sx={{mr: 2}}
width={30}
height={30}
/>
Testnet
</TabNavLink>
Expand Down
4 changes: 2 additions & 2 deletions components/SidebarAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ const AccordionOption = ({
>
{data.title}
{isOpen ? (
<Image src="caret-up.svg" alt="up" />
<Image src="caret-up.svg" alt="up" width={10} height={7} />
) : (
<Image src="caret-down.svg" alt="down" />
<Image src="caret-down.svg" alt="down" width={10} height={7} />
)}
</Button>
{isOpen && (
Expand Down

0 comments on commit 418d9b2

Please sign in to comment.