18 lines
361 B
CSS
18 lines
361 B
CSS
@import "@newspaperui/theme/dist/style.css";
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html, body {
|
|
background: var(--nui-bg-page);
|
|
color: var(--nui-text-body);
|
|
font-family: var(--font-family-body);
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|