-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 868 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (53 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Dashboard global baseline */
@import './styles/design-system.css';
html,
body,
#app {
width: 100%;
height: 100%;
margin: 0;
}
html {
color-scheme: light dark;
-webkit-text-size-adjust: 100%;
}
body {
min-width: 320px;
overflow: hidden;
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
color: var(--dp-text-primary);
background: var(--dp-bg-app);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
a {
color: inherit;
text-decoration: none;
}
img,
video,
canvas,
svg,
iframe {
max-width: 100%;
}
button,
input,
textarea,
select {
font: inherit;
}
#app {
overflow: hidden;
}
.dp-page {
min-width: 0;
min-height: 0;
}