File size: 438 Bytes
0c20ea8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@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 */
}