this repo has no description
2
fork

Configure Feed

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

now it looks reasonable, and I think I understand what I was doing wrong

I needed a main element, that was using tailwind classes, so that
everything inside that class, followed the same structure

+49 -52
+45 -52
mast-react-vite/src/index.css
··· 1 1 @tailwind base; 2 2 @tailwind components; 3 3 @tailwind utilities; 4 - 4 + 5 5 @layer base { 6 6 :root { 7 7 --background: 0 0% 100%; 8 - --foreground: 222.2 84% 4.9%; 9 - 8 + --foreground: 240 10% 3.9%; 10 9 --card: 0 0% 100%; 11 - --card-foreground: 222.2 84% 4.9%; 12 - 10 + --card-foreground: 240 10% 3.9%; 13 11 --popover: 0 0% 100%; 14 - --popover-foreground: 222.2 84% 4.9%; 15 - 16 - --primary: 222.2 47.4% 11.2%; 17 - --primary-foreground: 210 40% 98%; 18 - 19 - --secondary: 210 40% 96.1%; 20 - --secondary-foreground: 222.2 47.4% 11.2%; 21 - 22 - --muted: 210 40% 96.1%; 23 - --muted-foreground: 215.4 16.3% 46.9%; 24 - 25 - --accent: 210 40% 96.1%; 26 - --accent-foreground: 222.2 47.4% 11.2%; 27 - 12 + --popover-foreground: 240 10% 3.9%; 13 + --primary: 240 5.9% 10%; 14 + --primary-foreground: 0 0% 98%; 15 + --secondary: 240 4.8% 95.9%; 16 + --secondary-foreground: 240 5.9% 10%; 17 + --muted: 240 4.8% 95.9%; 18 + --muted-foreground: 240 3.8% 46.1%; 19 + --accent: 240 4.8% 95.9%; 20 + --accent-foreground: 240 5.9% 10%; 28 21 --destructive: 0 84.2% 60.2%; 29 - --destructive-foreground: 210 40% 98%; 30 - 31 - --border: 214.3 31.8% 91.4%; 32 - --input: 214.3 31.8% 91.4%; 33 - --ring: 222.2 84% 4.9%; 34 - 22 + --destructive-foreground: 0 0% 98%; 23 + --border: 240 5.9% 90%; 24 + --input: 240 5.9% 90%; 25 + --ring: 240 5.9% 10%; 35 26 --radius: 0.5rem; 27 + --chart-1: 12 76% 61%; 28 + --chart-2: 173 58% 39%; 29 + --chart-3: 197 37% 24%; 30 + --chart-4: 43 74% 66%; 31 + --chart-5: 27 87% 67%; 36 32 } 37 - 33 + 38 34 .dark { 39 - --background: 222.2 84% 4.9%; 40 - --foreground: 210 40% 98%; 41 - 42 - --card: 222.2 84% 4.9%; 43 - --card-foreground: 210 40% 98%; 44 - 45 - --popover: 222.2 84% 4.9%; 46 - --popover-foreground: 210 40% 98%; 47 - 48 - --primary: 210 40% 98%; 49 - --primary-foreground: 222.2 47.4% 11.2%; 50 - 51 - --secondary: 217.2 32.6% 17.5%; 52 - --secondary-foreground: 210 40% 98%; 53 - 54 - --muted: 217.2 32.6% 17.5%; 55 - --muted-foreground: 215 20.2% 65.1%; 56 - 57 - --accent: 217.2 32.6% 17.5%; 58 - --accent-foreground: 210 40% 98%; 59 - 35 + --background: 240 10% 3.9%; 36 + --foreground: 0 0% 98%; 37 + --card: 240 10% 3.9%; 38 + --card-foreground: 0 0% 98%; 39 + --popover: 240 10% 3.9%; 40 + --popover-foreground: 0 0% 98%; 41 + --primary: 0 0% 98%; 42 + --primary-foreground: 240 5.9% 10%; 43 + --secondary: 240 3.7% 15.9%; 44 + --secondary-foreground: 0 0% 98%; 45 + --muted: 240 3.7% 15.9%; 46 + --muted-foreground: 240 5% 64.9%; 47 + --accent: 240 3.7% 15.9%; 48 + --accent-foreground: 0 0% 98%; 60 49 --destructive: 0 62.8% 30.6%; 61 - --destructive-foreground: 210 40% 98%; 62 - 63 - --border: 217.2 32.6% 17.5%; 64 - --input: 217.2 32.6% 17.5%; 65 - --ring: 212.7 26.8% 83.9%; 50 + --destructive-foreground: 0 0% 98%; 51 + --border: 240 3.7% 15.9%; 52 + --input: 240 3.7% 15.9%; 53 + --ring: 240 4.9% 83.9%; 54 + --chart-1: 220 70% 50%; 55 + --chart-2: 160 60% 45%; 56 + --chart-3: 30 80% 55%; 57 + --chart-4: 280 65% 60%; 58 + --chart-5: 340 75% 55%; 66 59 } 67 60 } 68 61
+4
mast-react-vite/src/main.tsx
··· 28 28 const rx = tblrx(db); 29 29 const ctx = { db, rx }; 30 30 31 + document.getElementById("root")!.classList.add("dark"); 32 + 31 33 createRoot(document.getElementById("root") as HTMLElement).render( 34 + <main className="min-h-screen flex flex-col py-12 bg-background text-gray-200"> 32 35 <App ctx={ctx} /> 36 + </main> 33 37 );