@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
41 lines (33 loc) • 666 B
CSS
:root {
color-scheme: var(--mantine-color-scheme);
}
*,
*::before,
*::after {
box-sizing: border-box;
}
input,
button,
textarea,
select {
font: inherit;
}
button,
select {
text-transform: none;
}
body {
margin: 0;
font-family: var(--mantine-font-family);
font-size: var(--mantine-font-size-md);
line-height: var(--mantine-line-height);
background-color: var(--mantine-color-body);
color: var(--mantine-color-text);
-webkit-font-smoothing: var(--mantine-webkit-font-smoothing);
-moz-osx-font-smoothing: var(--mantine-moz-font-smoothing);
}
@media screen and (max-device-width: 31.25em) {
body {
-webkit-text-size-adjust: 100%
}
}