fix: width
This commit is contained in:
parent
c8d6214322
commit
2190a2f55f
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue