35 lines
538 B
SCSS
35 lines
538 B
SCSS
|
|
:host {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.image-field {
|
||
|
|
display: flex;
|
||
|
|
gap: 12px;
|
||
|
|
align-items: flex-start;
|
||
|
|
}
|
||
|
|
|
||
|
|
.image-field__thumb {
|
||
|
|
width: 56px;
|
||
|
|
height: 56px;
|
||
|
|
border-radius: 10px;
|
||
|
|
border: 1px solid var(--border-color, #d3dad9);
|
||
|
|
object-fit: cover;
|
||
|
|
background: #fbfcfc;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.image-field__thumb--empty {
|
||
|
|
background: repeating-conic-gradient(#f0f2f1 0% 25%, #fbfcfc 0% 50%) 0 0 / 12px 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.image-field__controls {
|
||
|
|
flex: 1;
|
||
|
|
display: grid;
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.image-field__actions {
|
||
|
|
display: flex;
|
||
|
|
gap: 8px;
|
||
|
|
}
|