diff --git a/src/App.css b/src/App.css index b9d355d..1adb028 100644 --- a/src/App.css +++ b/src/App.css @@ -1,9 +1,5 @@ -#root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; -} +/* App-specific styles that don't conflict with Tailwind */ +/* Most styling is now handled by Tailwind CSS classes */ .logo { height: 6em; @@ -11,9 +7,11 @@ will-change: filter; transition: filter 300ms; } + .logo:hover { filter: drop-shadow(0 0 2em #646cffaa); } + .logo.react:hover { filter: drop-shadow(0 0 2em #61dafbaa); } @@ -22,6 +20,7 @@ from { transform: rotate(0deg); } + to { transform: rotate(360deg); } @@ -31,12 +30,4 @@ a:nth-of-type(2) .logo { animation: logo-spin infinite 20s linear; } -} - -.card { - padding: 2em; -} - -.read-the-docs { - color: #888; -} +} \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index f2aaf19..e8cf843 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,6 @@ import { useState, useEffect } from 'react' import { supabase } from './lib/supabase' import { Login } from './components/Login' import { Dashboard } from './components/Dashboard' -import './App.css' function App() { const [isAuthenticated, setIsAuthenticated] = useState(null) diff --git a/src/index.css b/src/index.css index 08a3ac9..2325ac1 100644 --- a/src/index.css +++ b/src/index.css @@ -1,68 +1,15 @@ +@import "tailwindcss"; + +/* Reset some default styles that conflict with Tailwind */ +body { + margin: 0; + min-height: 100vh; +} + +/* Custom styles that don't conflict with Tailwind */ :root { - font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; - line-height: 1.5; - font-weight: 400; - - color-scheme: light dark; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; - font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -} - -a { - font-weight: 500; - color: #646cff; - text-decoration: inherit; -} -a:hover { - color: #535bf2; -} - -body { - margin: 0; - display: flex; - place-items: center; - min-width: 320px; - min-height: 100vh; -} - -h1 { - font-size: 3.2em; - line-height: 1.1; -} - -button { - border-radius: 8px; - border: 1px solid transparent; - padding: 0.6em 1.2em; - font-size: 1em; - font-weight: 500; - font-family: inherit; - background-color: #1a1a1a; - cursor: pointer; - transition: border-color 0.25s; -} -button:hover { - border-color: #646cff; -} -button:focus, -button:focus-visible { - outline: 4px auto -webkit-focus-ring-color; -} - -@media (prefers-color-scheme: light) { - :root { - color: #213547; - background-color: #ffffff; - } - a:hover { - color: #747bff; - } - button { - background-color: #f9f9f9; - } -} +} \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..dca8ba0 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,11 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + "./index.html", + "./src/**/*.{js,ts,jsx,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +}