Files
web/components/Current/Hero/hero.module.css
Christel Westerberg 367dffc41d fix: cleanup
2024-02-13 16:17:54 +01:00

27 lines
412 B
CSS

.wrapper {
z-index: 0;
}
.picture {
visibility: visible;
opacity: 1;
transition: opacity 400ms ease-in-out 0s;
transform: translate(-50%, -50%) !important;
}
.heroImage {
width: 100%;
height: auto;
max-height: 600px;
min-height: 100px;
object-fit: cover;
object-position: center;
aspect-ratio: 1/1;
}
@media screen and (min-width: 740px) {
.heroImage {
aspect-ratio: auto;
}
}