12 lines
249 B
CSS
12 lines
249 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
background-image: url('./assets/background.jpg');
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
overflow: hidden;
|
|
overscroll-behavior: none;
|
|
user-select: none;
|
|
}
|