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