Skip to content

Commit

Permalink
v4.2.4/update-background
Browse files Browse the repository at this point in the history
  • Loading branch information
GodHermit committed Dec 20, 2024
1 parent f5e001e commit ff970a4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/app/(main)/styles.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
.bg-grid {
background-size: 80px 80px;
background-image:
background-size: 60px 60px;
/* background-image:
linear-gradient(to right, hsl(var(--nextui-foreground)) 1px, transparent 1px),
linear-gradient(to bottom, hsl(var(--nextui-foreground)) 1px, transparent 1px);
linear-gradient(to bottom, hsl(var(--nextui-foreground)) 1px, transparent 1px); */
background-image: radial-gradient(white 2px, transparent 0);
background-position: center;
mask: radial-gradient(circle, rgba(0, 0, 0, .8) 0px, rgba(0, 0, 0, .1) 200px) no-repeat;
mask: radial-gradient(
circle,
rgba(0, 0, 0, 0.8) 0px,
rgba(0, 0, 0, 0.1) 200px
)
no-repeat;
mask-size: 500vw 500vh;
mask-position: -200vw -200vh;
}

0 comments on commit ff970a4

Please sign in to comment.