Skip to content

Commit 285cf7f

Browse files
author
belledw
committed
Replaced frame image with new frame pixel art
1 parent bc17634 commit 285cf7f

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

client/public/frame.svg

Lines changed: 0 additions & 9 deletions
This file was deleted.

client/public/pixel-art-frame.svg

Lines changed: 9 additions & 0 deletions
Loading

client/src/components/main/MemberProfile.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ export function MemberProfile({ member }: MemberProfileProps) {
5454
)}
5555
</div>
5656
<Image
57-
src="/frame.svg"
57+
src="/pixel-art-frame.svg"
5858
alt="golden pixel art frame around profile picture"
59-
width={176}
60-
height={192}
61-
className="z-0 h-48 w-44"
59+
width={200}
60+
height={200}
61+
className="z-10"
6262
/>
6363
</div>
6464
<div className="flex w-4/5 flex-col gap-2 rounded-md p-2.5 font-firaCode">

client/src/pages/about.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default function AboutPage() {
118118
key={`top-${idx}`}
119119
className="flex flex-col items-start gap-0"
120120
>
121-
<div className="relative flex h-[11.25rem] w-[11.25rem] items-center justify-center bg-[url('/frame.svg')] bg-contain bg-center bg-no-repeat">
121+
<div className="relative flex h-[11.25rem] w-[11.25rem] items-center justify-center bg-[url('/pixel-art-frame.svg')] bg-contain bg-center bg-no-repeat">
122122
<Image
123123
src={
124124
member.profile_picture === null
@@ -128,7 +128,7 @@ export default function AboutPage() {
128128
alt="/landing_placeholder.png"
129129
width={108}
130130
height={108}
131-
className="mb-2 h-[6.75rem] w-[6.75rem]"
131+
className="h-[7.25rem] w-[6.75rem]"
132132
/>
133133
</div>
134134
<div className="w-[11.25rem] pl-3 text-left font-firaCode text-[0.5rem] leading-tight">
@@ -150,7 +150,7 @@ export default function AboutPage() {
150150
key={`bottom-${idx}`}
151151
className="flex flex-col items-start gap-0"
152152
>
153-
<div className="relative flex h-[11.25rem] w-[11.25rem] items-center justify-center bg-[url('/frame.svg')] bg-contain bg-center bg-no-repeat">
153+
<div className="relative flex h-[11.25rem] w-[11.25rem] items-center justify-center bg-[url('/pixel-art-frame.svg')] bg-contain bg-center bg-no-repeat">
154154
<Image
155155
src={
156156
member.profile_picture === null
@@ -160,7 +160,7 @@ export default function AboutPage() {
160160
alt="/landing_placeholder.png"
161161
width={108}
162162
height={108}
163-
className="mb-2 h-[6.75rem] w-[6.75rem]"
163+
className="h-[7.25rem] w-[6.75rem]"
164164
/>
165165
</div>
166166
<div className="w-[11.25rem] pl-3 text-left font-firaCode text-[0.5rem] leading-tight">

0 commit comments

Comments
 (0)