37 lines
645 B
CSS
37 lines
645 B
CSS
html,
|
|
body {
|
|
/* max-width: 100vw; */
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
color-scheme: dark;
|
|
}
|
|
}
|
|
|
|
/* 标准写法 */
|
|
:fullscreen::backdrop {
|
|
background: var(--mantine-color-body);
|
|
}
|
|
|
|
/* Safari / WebKit */
|
|
:-webkit-full-screen::backdrop {
|
|
background: var(--mantine-color-body);
|
|
}
|
|
|
|
.mantine-datatable-page-size-selector-active {
|
|
background: var(--mantine-primary-color-filled) !important;
|
|
color: var(--mantine-color-white) !important;
|
|
}
|
|
|
|
.mantine-datatable-page-size-selector-active .mantine-Text-root {
|
|
color: inherit !important;
|
|
}
|