mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
44 lines
704 B
CSS
44 lines
704 B
CSS
@layer mantine {:root,
|
|
:host {
|
|
color-scheme: var(--mantine-color-scheme);
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input,
|
|
button,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
button,
|
|
select {
|
|
text-transform: none;
|
|
}
|
|
|
|
body,
|
|
:host {
|
|
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,
|
|
:host {
|
|
-webkit-text-size-adjust: 100%
|
|
}
|
|
}
|
|
} |