pianello-api/resources/css/components/_image-fit.css
Ale Gallo 74c4b1d3f4 Committing laraver (part 2)
committing part of the laravel system with templating files and components
2023-11-10 15:58:25 +01:00

12 lines
189 B
CSS

@layer components {
.image-fit {
position: relative;
& > img {
position: absolute;
object-fit: cover;
top: 0;
width: 100%;
height: 100%;
}
}
}