54 lines
886 B
SCSS
54 lines
886 B
SCSS
|
.pdfFieldItem {
|
||
|
background: white;
|
||
|
padding: 10px;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.drawToolBoxContainer {
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
z-index: 50;
|
||
|
|
||
|
.drawToolBox {
|
||
|
display: flex;
|
||
|
gap: 10px;
|
||
|
min-width: 100px;
|
||
|
background-color: white;
|
||
|
padding: 15px;
|
||
|
box-shadow: 0 0 10px 1px #0000003b;
|
||
|
border-radius: 4px;
|
||
|
|
||
|
.toolItem {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
border: 1px solid rgba(0, 0, 0, 0.137);
|
||
|
padding: 5px;
|
||
|
cursor: pointer;
|
||
|
user-select: none;
|
||
|
|
||
|
&.selected {
|
||
|
border-color: #01aaad;
|
||
|
color: #01aaad;
|
||
|
}
|
||
|
|
||
|
&:not(.selected) {
|
||
|
&:hover {
|
||
|
border-color: #01aaad79;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.pdfImageWrapper {
|
||
|
&.drawing {
|
||
|
cursor: crosshair;
|
||
|
}
|
||
|
}
|