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
316 changes: 220 additions & 96 deletions web/src/app/[cat]/InteractionClient.tsx

Large diffs are not rendered by default.

269 changes: 173 additions & 96 deletions web/src/app/create/page.tsx

Large diffs are not rendered by default.

44 changes: 43 additions & 1 deletion web/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ body {

body {
@apply bg-background text-foreground;
font-family: 'Inter', sans-serif;
}

h1,
Expand All @@ -57,7 +58,8 @@ body {
h4,
h5,
h6 {
font-family: "Arial", sans-serif;
font-family: 'Inter', sans-serif;
@apply font-bold tracking-tight;
}
}

Expand All @@ -75,4 +77,44 @@ body {

html {
scroll-behavior: smooth;
}

/* Fix spacing issues */
main {
@apply min-h-[calc(100vh-4rem)] pt-16 pb-8;
}

/* Modern scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
@apply bg-gray-100 dark:bg-gray-800;
}

::-webkit-scrollbar-thumb {
@apply bg-gray-300 dark:bg-gray-600 rounded-full;
}

::-webkit-scrollbar-thumb:hover {
@apply bg-gray-400 dark:bg-gray-500;
}

/* Animations */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}

.animate-float {
animation: float 3s ease-in-out infinite;
}
2 changes: 1 addition & 1 deletion web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function RootLayout({
<WalletProvider>
<ThemeProvider
attribute="class"
defaultTheme="light"
defaultTheme="dark"
enableSystem
disableTransitionOnChange
>
Expand Down
286 changes: 212 additions & 74 deletions web/src/app/my-cats/page.tsx

Large diffs are not rendered by default.

Loading