Files
ionic-framework/core/src/components/img/img.scss
Liam DeBeasi 621c79bd40 fix(img): remove space under img (#17582)
* set align to bottom for image

* change to display block
2019-02-25 09:28:53 -05:00

17 lines
166 B
SCSS

:host {
display: block;
object-fit: contain;
}
img {
display: block;
width: 100%;
height: 100%;
object-fit: inherit;
object-position: inherit;
}