Skip to content

Commit 97e26f3

Browse files
committed
deploy: scale up hero logo on mobile and desktop
The previous sizing relied on the intrinsic 320px SVG overflowing small containers, which masked how small the containers really were. Now that the SVG is fluid, bump the container to w-52 sm:w-72 md:w-96 lg:w-[28rem] xl:w-[32rem] so the mark reads as the dominant element at every breakpoint.
1 parent 827c254 commit 97e26f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Header = () => {
1616
<header className={headerClass}>
1717
<Link href="/" aria-label={siteMetadata.headerTitle}>
1818
<div className="flex items-center justify-between">
19-
<div className="mr-3 w-40 sm:w-60 md:w-80 lg:w-96">
19+
<div className="mr-3 w-52 sm:w-72 md:w-96 lg:w-[28rem] xl:w-[32rem]">
2020
<Logo />
2121
<span className="text-muted mt-1 block text-left text-sm font-medium sm:text-base md:text-lg">
2222
Intelligent Backends

0 commit comments

Comments
 (0)