blob: 7951aff65e91f7364065c9b915a1ae3d37c9be57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@import 'global/globalCssVariables.module.scss';
.collectionFreeFormRemoteCursors-cont {
position: absolute;
z-index: $remoteCursors-zindex;
transform-origin: 'center center';
}
.collectionFreeFormRemoteCursors-canvas {
position: absolute;
width: 20px;
height: 20px;
opacity: 0.5;
border-radius: 50%;
border: 2px solid black;
}
.collectionFreeFormRemoteCursors-symbol {
font-size: 14;
color: black;
// fontStyle: "italic",
margin-left: -12;
margin-top: 4;
}
|