Files
kupshop/web/common/twig/scss/blocek/_media.scss
2025-08-02 16:30:27 +02:00

45 lines
813 B
SCSS

.w-media {
display: flex;
margin-bottom: 1rem;
position: relative;
@each $name, $props in $flags {
@each $prop, $val in $props {
@if $prop == "background-color" {
&.color-#{$name} .w-media-img {
color: $val !important;
}
}
}
}
}
.w-media-body {
flex-grow: 1;
> *,
.w-text > * {
margin-bottom: 0;
}
}
.w-media-img {
flex: none;
line-height: 1;
svg {
width: 3em;
height: 3em;
fill: currentColor;
margin-right: 20px; // gap-width? (zpětná kompatibilita z X/kupkolo šablonami
}
}
.wpj-blocek-active {
.w-media-img:empty {
min-width: 3rem;
min-height: 3rem;
background: url("~@assets/images/image-placeholder.png") no-repeat center / contain;
}
}