fix: width

This commit is contained in:
Oleg Proskurin 2025-12-04 23:06:36 +07:00
parent c8d6214322
commit 2190a2f55f
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ const blobs = [
export function BackgroundBlobs() { export function BackgroundBlobs() {
return ( return (
<> <div className="w-full h-full absolute overflow-hidden">
{blobs.map((blob, i) => ( {blobs.map((blob, i) => (
<div <div
key={i} key={i}
@ -37,6 +37,6 @@ export function BackgroundBlobs() {
style={{ background: `radial-gradient(circle, ${blob.gradient} 0%, transparent 70%)` }} style={{ background: `radial-gradient(circle, ${blob.gradient} 0%, transparent 70%)` }}
/> />
))} ))}
</> </div>
); );
} }