19 lines
395 B
CSS
19 lines
395 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
/* iOS Safari Safe Area Support */
|
||
|
|
html {
|
||
|
|
/* Allow content to extend into safe areas */
|
||
|
|
min-height: 100vh;
|
||
|
|
min-height: -webkit-fill-available;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
min-height: 100vh;
|
||
|
|
min-height: -webkit-fill-available;
|
||
|
|
/* Transparent background to allow video to show through */
|
||
|
|
background: transparent;
|
||
|
|
}
|