blob: 55e06c6ca3d1d8b8bca5938fd655513a74a9de45 (
plain)
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
|
.inkstroke-UI {
// transform-origin: top left;
position: absolute;
overflow: visible;
pointer-events: none;
z-index: 2001; // 1 higher than documentdecorations
svg:not(:root) {
overflow: visible !important;
position: absolute;
left:0;
top:0;
}
}
.inkStroke {
mix-blend-mode: multiply;
stroke-linejoin: round;
stroke-linecap: round;
overflow: visible !important;
transform-origin: top left;
width: 100%;
height: 100%;
svg:not(:root) {
overflow: visible !important;
}
}
|