Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/features/activities/components/ActivitiesTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export default function ActivitiesTabs() {
aria-current={isActive ? "page" : undefined}
className={[
"inline-flex justify-center w-full rounded-lg py-3 transition",
"md:text-16-m text-14-m",
"text-16-m",
isActive
? "bg-white text-black md:text-16-sb text-14-sb"
? "bg-white text-black text-16-sb"
: "text-gray-500 hover:bg-gray-200",
].join(" ")}
>
Expand Down
4 changes: 2 additions & 2 deletions src/features/user/components/ProfileCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export default function ProfileCard() {
return (
<div className="flex flex-col w-[260px] h-[100px] bg-white rounded-2xl border border-gray-200 p-6">
<div className="flex w-full gap-1.5">
<p className="text-black sm:text-18-sb text-14-sb">{userName}</p>
<p className="text-black text-18-sb">{userName}</p>
<EditProfileButton />
</div>
<span className="text-[#9EA5B0] sm:text-16-r text-12-r">{userEmail}</span>
<span className="text-[#9EA5B0] text-16-r">{userEmail}</span>
</div>
);
}