Skip to content

Commit

Permalink
๐Ÿ’„design: ์ƒ‰์ƒ ์‹œ์Šคํ…œ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
bunju20 committed May 1, 2024
1 parent cffd765 commit ba3bf10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/member/introduce/MemberIntro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const MemberIntro = ({ title }: { title: string }) => {
<div className="w-full flex-col flex-end">
<div className="w-full flex flex-col justify-start mt-20">
<div className="H4">{title}</div>
<hr className="border-t-[1px] border-[#3E4348] my-1" />
<hr className="border-t-[1px] border-mono_700 my-1" />
</div>

<div className="w-full flex justify-start overflow-hidden">
Expand Down
2 changes: 1 addition & 1 deletion src/components/member/profilebox/ProfileBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const ProfileBox = ({ member }: { member: any }) => {

return (
<div className="w-full">
<div className="w-full flex flex-col items-start bg-[#1C1D1F] pl-[1rem] pr-[1rem] pt-[1.25rem] pb-[1.25rem] rounded-[0.25rem]">
<div className="w-full flex flex-col items-start bg-mono_900 pl-[1rem] pr-[1rem] pt-[1.25rem] pb-[1.25rem] rounded-[0.25rem]">
<div className="w-full flex mb-[1rem]">
<Image
className="mr-[1rem] rounded-[0.2rem]"
Expand Down
1 change: 1 addition & 0 deletions src/components/member/timeline/TimeLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const TimeLine = ({

const scrollContainer = useRef(null);

//์ปฌ๋Ÿฌ ์‹œ์Šคํ…œ ์ ์šฉ ๋ถˆ๊ฐ€
const getCircleColor = (index: any) => {
if (index === selected) return '#FB8C00';
if (index < selected) return '#FFCC80';
Expand Down

0 comments on commit ba3bf10

Please sign in to comment.