-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathflowy.min.css
More file actions
43 lines (43 loc) · 750 Bytes
/
flowy.min.css
File metadata and controls
43 lines (43 loc) · 750 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
.dragging {
z-index: 111 !important;
}
.block {
position: absolute;
z-index: 9;
}
.indicator {
width: 12px;
height: 12px;
border-radius: 60px;
background-color: #217ce8;
margin-top: -5px;
opacity: 1;
transition: all 0.3s cubic-bezier(0.05, 0.03, 0.35, 1);
transform: scale(1);
position: absolute;
z-index: 2;
}
.invisible {
opacity: 0 !important;
transform: scale(0);
}
.indicator:after {
content: "";
display: block;
width: 12px;
height: 12px;
background-color: #217ce8;
transform: scale(1.7);
opacity: 0.2;
border-radius: 60px;
}
.arrowblock {
position: absolute;
width: 100%;
overflow: visible;
pointer-events: none;
}
.arrowblock svg {
width: -webkit-fill-available;
overflow: visible;
}