Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions client/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@

body {
@apply font-sans antialiased bg-background text-foreground;
overflow-x: hidden;
}

html {
Expand Down Expand Up @@ -379,6 +380,19 @@
background-size: 60px 60px;
}

.xmem-grid {
background-image:
linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
linear-gradient(135deg, rgba(184, 255, 101, 0.08), transparent 34%, rgba(61, 216, 255, 0.07) 66%, transparent);
background-size: 72px 72px, 72px 72px, 100% 100%;
}

::selection {
background: rgba(184, 255, 101, 0.28);
color: white;
}

/* Dot pattern */
.dot-pattern {
background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
Expand Down
Loading