majic / src /styles /global /index.css
nolual's picture
Upload 55 files
0c20ea8
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
height: 100%; /* Ensure full viewport height */
width: 100vw;
overflow: hidden; /* Prevent body scrolling */
/* Add your background color or other styles here */
}
/* Define a container for your React app */
#root {
display: flex;
height: 100%; /* Ensure full viewport height */
width: 100vw;
overflow: hidden; /* Prevent container scrolling */
}