22 lines
615 B
CSS
22 lines
615 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
@import "tailwindcss";
|
|
@import "primeicons/primeicons.css";
|
|
@import "tailwindcss-primeui";
|
|
|
|
html {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
|
|
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
font-size: 14px;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100%;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
font-weight: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background: light-dark(var(--p-surface-0), var(--p-surface-950));
|
|
}
|