jordanopensource / portal-web-archive

Web client for JOSA Portal

Home Page:https://www.josa.ngo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ratios of Team Pictures are Wrong

mahasneh opened this issue · comments

Describe the bug
The ratios of pictures in the Team page are wrong. The ratio (width/height) should be 1.21

Screenshots
Correct:
image
Wrong:
image

Additional context
The issue was caused by commit https://github.com/jordanopensource/portal-web/pull/194/commits/05c355c03c2ce82ab98badfad6a56b03b9993e3b in file components/BoardStaff/BoardStaffSingle.vue

The original widths/heights were (correctly):
.pb { width: 125px; height: 103px; min-width: 125px; min-height: 103px; }

And they were changed to:
.pb { @apply w-32 h-24; min-width: 125px; min-height: 103px; }