I have a round image that in a browser appears round. However, when I build the apk and run it on my android phone, the image is distorted (width greater than height). How do I enforce that it stays round?
I am using Ionic 2.
HTML:
<p class="item-selected-row search-right">
<img class="item-stable" id="icon-image-{{subcategory.id}}" src="{{subcategory.icon}}" height="23" width="23" />
</p>
SCSS:
.item-selected-row {
display: inline-flex;
}
.search-right {
float: right;
}
img.item-stable {
}