Skip to content

Commit

Permalink
Merge pull request #140 from NUS-Fintech-Society/card-ui-fix
Browse files Browse the repository at this point in the history
fix width for cards to ensure standardised size
  • Loading branch information
woowenjun99 authored Jul 18, 2023
2 parents 2754f07 + 08138a8 commit 38a5129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/department/MemberCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { User } from '~/server/db/models/User'
const MemberCard = ({ member }: { member: User }) => {
return (
<Card
maxWidth="250px"
width="280px"
borderRadius="20"
boxShadow="0px 4px 4px rgba(0, 0, 0, 0.25)"
minHeight="250px"
Expand Down
2 changes: 1 addition & 1 deletion src/components/recruitment/director/ApplicantCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const ApplicantCard = ({ applicant }: { applicant: Applicant }) => {
}
return (
<Card
maxWidth="280px"
width="280px"
borderRadius="20"
boxShadow="0px 4px 4px rgba(0, 0, 0, 0.25)"
minHeight="310px"
Expand Down

0 comments on commit 38a5129

Please sign in to comment.