diff options
Diffstat (limited to 'frontend/src/App.css')
| -rw-r--r-- | frontend/src/App.css | 78 |
1 files changed, 48 insertions, 30 deletions
diff --git a/frontend/src/App.css b/frontend/src/App.css index b9d355d..57800a4 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -1,42 +1,60 @@ -#root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; +/* Resets and Base Styles */ +* { + box-sizing: border-box; } -.logo { - height: 6em; - padding: 1.5em; - will-change: filter; - transition: filter 300ms; -} -.logo:hover { - filter: drop-shadow(0 0 2em #646cffaa); +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } -.logo.react:hover { - filter: drop-shadow(0 0 2em #61dafbaa); + +/* Dashboard Layout */ +.dashboard { + display: flex; + flex-direction: column; + height: 100vh; + overflow: hidden; + /* Prevent body scroll */ } -@keyframes logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } +.dashboard-header { + background: #2c3e50; + color: white; + padding: 0.75rem 1.5rem; + display: flex; + justify-content: space-between; + align-items: center; + flex-shrink: 0; } -@media (prefers-reduced-motion: no-preference) { - a:nth-of-type(2) .logo { - animation: logo-spin infinite 20s linear; - } +.dashboard-header h1 { + margin: 0; + font-size: 1.25rem; + font-weight: 600; } -.card { - padding: 2em; +.dashboard-content { + display: flex; + flex: 1; + overflow: hidden; } -.read-the-docs { - color: #888; +.dashboard-sidebar { + width: 300px; + background: #f8f9fa; + border-right: 1px solid #ddd; + display: flex; + flex-direction: column; + overflow-y: auto; } + +.dashboard-main { + flex: 1; + padding: 2rem; + overflow-y: auto; + background: #fff; +}
\ No newline at end of file |
