Skip to content
Merged
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
1 change: 1 addition & 0 deletions apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"remark-directive": "catalog:",
"tailwind-merge": "catalog:",
"three": "^0.183.2",
"shiki": "3.22.0",
"zod": "catalog:"
},
"devDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions apps/site/src/app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ body {
transform: translateY(0%);
}
}
.newsletter-bg {
background: linear-gradient(
59deg,
color-mix(in srgb, var(--color-foreground-ppg) 30%, transparent) 6.53%,
var(--color-background-default) 74.71%
);
}

@keyframes glitch-1 {
0% {
Expand Down Expand Up @@ -192,3 +199,9 @@ body {
.running {
animation-play-state: running;
}

.diff-add {
background: var(--color-background-orm);
width: 100%;
display: inline-block;
}
2 changes: 1 addition & 1 deletion apps/site/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {
<Script src={WebFA} crossOrigin="anonymous" />
</head>
<body className="flex flex-col min-h-screen pt-24 relative">
<div className="bg-blog absolute inset-0 -z-1 overflow-hidden" />
<div className="bg-background-default absolute inset-0 -z-1 overflow-hidden" />
<Provider>
<ThemeProvider defaultTheme="system" storageKey="theme">
<WebNavigation
Expand Down
Loading
Loading