Files
Remote-Terminal-for-MeshCore/frontend/src/styles.css
2026-01-10 01:04:26 -08:00

31 lines
580 B
CSS

/* Base styles - minimal CSS that Tailwind/shadcn can't handle */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body, #root {
height: 100%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
/* Prevent overscroll/bounce on mobile */
overscroll-behavior: none;
}
/* Fallback for browsers without dvh support */
@supports not (height: 1dvh) {
.h-dvh {
height: 100vh;
}
}
/* Mobile sidebar override - ensures sidebar fills Sheet container */
[data-state] .sidebar {
width: 100%;
border-right: none;
}