15 lines
347 B
SCSS
Executable File
15 lines
347 B
SCSS
Executable File
/* You can add global styles to this file, and also import other style files */
|
|
@import "tailwindcss";
|
|
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
min-height: 100vh;
|
|
min-width: 100vw;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|