Fix improper image border scaling

Previously, the rounded image border would not scale properly with different aspect ratios as the img object changed its own aspect ratio
This commit is contained in:
NexusXe
2022-06-24 18:07:56 -05:00
committed by GitHub
parent 9af128a8a6
commit 60938f3e19

View File

@ -18,6 +18,13 @@
display: inline-table;
border-radius: 50%;
pointer-events: none;
width: auto;
height: auto;
border-radius: 50%;
pointer-events: none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
overflow: hidden;
}
.buttons {