forked from webpack/webpack-bundle-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.css
More file actions
47 lines (42 loc) · 951 Bytes
/
viewer.css
File metadata and controls
47 lines (42 loc) · 951 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
:root {
--main-font: normal 11px Verdana, sans-serif;
--bg-primary: #fff;
--bg-secondary: #f5f5f5;
--text-primary: #000;
--text-secondary: #666;
--border-color: #aaa;
--border-light: #ddd;
--shadow: rgba(0, 0, 0, 0.1);
--hover-bg: rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] {
--bg-primary: #1e1e1e;
--bg-secondary: #252525;
--text-primary: #e0e0e0;
--text-secondary: #a0a0a0;
--border-color: #404040;
--border-light: #333;
--shadow: rgba(0, 0, 0, 0.3);
--hover-bg: rgba(255, 255, 255, 0.05);
}
:global html,
:global body,
:global #app {
height: 100%;
margin: 0;
overflow: hidden;
padding: 0;
width: 100%;
background: var(--bg-primary);
color: var(--text-primary);
transition: background-color 0.3s ease, color 0.3s ease;
}
:global body.resizing {
user-select: none !important;
}
:global body.resizing * {
pointer-events: none;
}
:global body.resizing.col {
cursor: col-resize !important;
}