blob: a9a0c51bb01883b069ca69154977e216be7fbfcc [file] [log] [blame]
Jiarenxiang38dcb052025-03-13 16:40:09 +08001html,
2body,
3#root {
4 height: 100%;
5 margin: 0;
6 padding: 0;
7 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
8 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
9 'Noto Color Emoji';
10}
11
12.colorWeak {
13 filter: invert(80%);
14}
15
16.ant-layout {
17 min-height: 100vh;
18}
19.ant-pro-sider.ant-layout-sider.ant-pro-sider-fixed {
20 left: unset;
21}
22
23canvas {
24 display: block;
25}
26
27body {
28 text-rendering: optimizeLegibility;
29 -webkit-font-smoothing: antialiased;
30 -moz-osx-font-smoothing: grayscale;
31}
32
33ul,
34ol {
35 list-style: none;
36}
37
38@media (max-width: 768px) {
39 .ant-table {
40 width: 100%;
41 overflow-x: auto;
42 &-thead > tr,
43 &-tbody > tr {
44 > th,
45 > td {
46 white-space: pre;
47 > span {
48 display: block;
49 }
50 }
51 }
52 }
53}