@studiocms/ui
Version:
The UI library for StudioCMS. Includes the layouts & components we use to build StudioCMS.
47 lines (46 loc) • 575 B
CSS
*,
*::before,
*::after {
box-sizing: border-box ;
}
html {
color-scheme: dark;
accent-color: hsl(var(--primary-base));
}
html,
body {
margin: 0;
}
html[data-theme=light] {
color-scheme: light;
}
body {
-webkit-font-smoothing: antialiased;
color: hsl(var(--text-normal));
background-color: hsl(var(--background-base));
}
input,
button,
textarea,
select {
font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
code {
overflow-wrap: anywhere;
}
code {
font-family: monospace;
}
button {
border: none;
outline: none;
background: none;
padding: 0;
}