19 lines
334 B
CSS
19 lines
334 B
CSS
@import "./theme.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: var(--foreground);
|
|
background-color: var(--background);
|
|
border-color: var(--border);
|
|
}
|
|
|