this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dark mode??????

alice 07365ad9 96e4da7a

+5 -8
+4 -7
src/app/globals.css
··· 4 4 5 5 :root { 6 6 --foreground-rgb: 0, 0, 0; 7 - /* --background-start-rgb: 214, 219, 220; 8 - --background-end-rgb: 255, 255, 255; */ 7 + --background-rgb: 255, 255, 255; 9 8 } 10 9 11 - @media (prefers-color-scheme: dark) { 10 + /* @media (prefers-color-scheme: dark) { 12 11 :root { 13 12 --foreground-rgb: 255, 255, 255; 14 - /* --background-start-rgb: 0, 0, 0; 15 - --background-end-rgb: 0, 0, 0; */ 16 13 } 17 - } 14 + } */ 18 15 19 16 body { 20 17 font-family: 'Times New Roman', Times, serif; 21 18 color: rgb(var(--foreground-rgb)); 22 - background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb)); 19 + background: rgb(var(--background-rgb)); 23 20 } 24 21 25 22 .main {
+1 -1
src/app/layout.tsx
··· 6 6 return ( 7 7 <html lang="en"> 8 8 <body>{children}</body> 9 - {/* <GA /> */} 9 + <GA /> 10 10 </html> 11 11 ); 12 12 }