Skip to content

Commit

Permalink
fix blue background
Browse files Browse the repository at this point in the history
  • Loading branch information
samj committed Apr 30, 2024
1 parent d076b90 commit bc55332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/BackgroundPattern/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from "react";

export default function BackgroundPattern() {
return (
<div className="absolute top-0 left-0 right-0 h-[300px] -z-10" aria-hidden>
<div className="absolute inset-0 z-10 bg-gradient-to-b from-transparent to-gray-50 dark:to-blue-600" />
<div className="absolute top-0 left-0 right-0 h-[350px] -z-10" aria-hidden>
<div className="absolute inset-0 z-10 bg-gradient-to-b from-transparent to-blue-700 dark:to-gray-500" />
<div className={`bg-background-pattern w-full h-full opacity-10`} />
</div>
);
Expand Down

0 comments on commit bc55332

Please sign in to comment.