ruv commited on
Commit
f1b285f
·
verified ·
1 Parent(s): 7bce4da

Create overview.css

Browse files
Files changed (1) hide show
  1. src/overview.css +61 -0
src/overview.css ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .react-flow__node-custom {
2
+ font-size: 10px;
3
+ width: 180px;
4
+ background: #f5f5f6;
5
+ color: #222;
6
+ box-shadow: 0 4px 6px -1px rgb(0 0 0 / 15%), 0 2px 4px -1px rgb(0 0 0 / 8%);
7
+ border-radius: 2px;
8
+ }
9
+
10
+ .react-flow__node-custom .react-flow__handle {
11
+ top: 24px;
12
+ right: -15px;
13
+ width: 6px;
14
+ height: 10px;
15
+ border-radius: 2px;
16
+ background-color: #778899;
17
+ }
18
+
19
+ .react-flow__node.circle {
20
+ border-radius: 50%;
21
+ width: 60px;
22
+ height: 60px;
23
+ display: flex;
24
+ justify-content: center;
25
+ align-items: center;
26
+ font-weight: 700;
27
+ }
28
+
29
+ .react-flow__node.annotation {
30
+ border-radius: 0;
31
+ text-align: left;
32
+ background: white;
33
+ border: none;
34
+ line-height: 1.4;
35
+ width: 225px;
36
+ box-shadow: 0 4px 6px -1px rgb(0 0 0 / 15%), 0 2px 4px -1px rgb(0 0 0 / 8%);
37
+ }
38
+
39
+ .react-flow__node.annotation .react-flow__handle {
40
+ display: none;
41
+ }
42
+
43
+ .custom-node__header {
44
+ padding: 8px 10px;
45
+ border-bottom: 1px solid #e2e8f0;
46
+ }
47
+
48
+ .custom-node__body {
49
+ padding: 10px;
50
+ }
51
+
52
+ .custom-node__select {
53
+ position: relative;
54
+ margin-bottom: 10px;
55
+ }
56
+
57
+ .custom-node__select select {
58
+ width: 100%;
59
+ margin-top: 5px;
60
+ font-size: 10px;
61
+ }