Files

18 lines
360 B
CSS
Raw Permalink Normal View History

@import "newspaperui-theme/dist/style.css";
2026-05-19 21:09:56 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2026-05-20 01:30:41 +08:00
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;
2026-05-19 21:09:56 +08:00
}
2026-05-20 01:30:41 +08:00
* { box-sizing: border-box; }