17 lines
283 B
CSS
17 lines
283 B
CSS
picture {
|
|
background-color: #ddd;
|
|
display: flex !important;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
picture img {
|
|
z-index: 1;
|
|
}
|
|
|
|
picture svg {
|
|
position: absolute;
|
|
opacity: 1;
|
|
transition: var(--transition-image-opacity);
|
|
z-index: 0;
|
|
}
|