blob: 53d27cd24901fdf79dffda6936e7a2ece88b1310 (
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
|
.inkstroke-UI {
// transform-origin: top left;
position: absolute;
overflow: visible;
pointer-events: none;
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;
svg:not(:root) {
overflow: visible !important;
}
}
|