Files
kupshop/admin/static/scss/components/_wpj-image-upload.scss
2025-08-02 16:30:27 +02:00

43 lines
788 B
SCSS

.wpj-image-upload-wrapper {
display: flex;
align-items: center;
border: 1px solid $border-color;
border-radius: $border-radius-base;
padding: 7px;
gap: 15px;
.image-placeholder {
display: flex;
align-items: center;
justify-content: center;
aspect-ratio: 1;
width: 74px;
min-width: 74px;
border-radius: $border-radius-base;
&.empty {
background: $gray-background;
}
.bi {
color: $text-muted;
font-size: 24px;
}
}
.input-group {
.btn {
border-bottom-left-radius: $border-radius-base;
border-top-left-radius: $border-radius-base;
.bi {
margin: 0;
}
}
}
.help-block {
margin-bottom: 0;
}
}