46 lines
768 B
SCSS
46 lines
768 B
SCSS
.JobSkill {
|
|
display: flex;
|
|
gap: $unit;
|
|
align-items: center;
|
|
|
|
&.editable:hover {
|
|
cursor: pointer;
|
|
|
|
& > img.editable,
|
|
& > div.placeholder.editable {
|
|
border: $hover-stroke;
|
|
box-shadow: $hover-shadow;
|
|
cursor: pointer;
|
|
transform: $scale-tall;
|
|
}
|
|
|
|
& p.placeholder {
|
|
color: $grey-20;
|
|
}
|
|
}
|
|
|
|
& > img,
|
|
& > div.placeholder {
|
|
background: white;
|
|
border-radius: calc($unit / 2);
|
|
border: 1px solid rgba(0, 0, 0, 0);
|
|
width: $unit * 5;
|
|
height: $unit * 5;
|
|
}
|
|
|
|
& > div.placeholder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
& > svg {
|
|
fill: $grey-60;
|
|
width: $unit * 2;
|
|
height: $unit * 2;
|
|
}
|
|
}
|
|
|
|
p.placeholder {
|
|
color: $grey-50;
|
|
}
|
|
}
|