15 lines
653 B
CSS
15 lines
653 B
CSS
/* === Bulma base styles (imported via JS to work with Vite's resolver) === */
|
|
|
|
/* Custom layout overrides */
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { margin: 0; min-width: 320px; background: #f5f5f5; font-family: system-ui, -apple-system, sans-serif; }
|
|
#root { width: 100%; height: 100vh; overflow-x: hidden; display: flex; flex-direction: column; }
|
|
|
|
/* Navbar burger on mobile */
|
|
.navbar-burger { cursor: pointer; }
|
|
|
|
/* Main content area */
|
|
.main-content { flex: 1; padding: 2rem 1.5rem; max-width: 800px; margin: 0 auto; width: 100%; }
|
|
|
|
/* Notification styles */
|
|
.notification.info-ok { background-color: #d1fae5; color: #065f46; } |