Skip to content

Commit 169d796

Browse files
committed
Tweak the blur blob position
1 parent 37fb63e commit 169d796

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/conf/2025/components/footer/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function Footer({
2222
return (
2323
<footer className="gql-all-anchors-focusable relative !bg-neu-100 text-neu-900 typography-menu dark:!bg-neu-0 max-md:px-0 max-md:pt-0">
2424
<Stripes />
25-
<div className="flex flex-wrap justify-between gap-4 border-neu-400 p-4 max-md:w-full max-md:border-b lg:p-10">
25+
<div className="flex flex-wrap justify-between gap-4 p-4 max-md:w-full lg:p-10">
2626
{logo}
2727
<div className="flex gap-x-4 gap-y-2 typography-body-lg">
2828
<p className="flex items-center gap-2">
@@ -33,7 +33,7 @@ export function Footer({
3333
<address className="not-italic">Amsterdam, Netherlands</address>
3434
</div>
3535
</div>
36-
<ul className="grid grid-cols-2 gap-px bg-neu-400 py-px lg:grid-cols-4">
36+
<ul className="grid grid-cols-2 gap-px bg-neu-400 py-px dark:bg-neu-100 lg:grid-cols-4">
3737
{links.map((box, i) => (
3838
<li className="bg-neu-100 dark:bg-neu-0 lg:h-32" key={i}>
3939
<FooterBox box={box} />
@@ -95,8 +95,8 @@ function Stripes() {
9595
style={{
9696
maskImage: `url(${blurBean.src})`,
9797
WebkitMaskImage: `url(${blurBean.src})`,
98-
maskPosition: "center 200px",
99-
WebkitMaskPosition: "center 200px",
98+
maskPosition: "center 250px",
99+
WebkitMaskPosition: "center 250px",
100100
maskSize: "200% 100%",
101101
WebkitMaskSize: "200% 100%",
102102
maskRepeat: "no-repeat",

0 commit comments

Comments
 (0)