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