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
2 changes: 1 addition & 1 deletion apps/web/src/app/my/_ui/MyProfileContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const MyProfileContent = () => {
<p>{nickname}님은</p>
<p>
현재{" "}
<span className={`text-primary ${profileData.role === UserRole.MENTEE ? "typo-sb-4" : "typo-medium-2"}`}>
<span className="text-primary typo-sb-5">
{profileData.role === UserRole.ADMIN ? "어드민" : isMentor ? "멘토" : "멘티"}
</span>{" "}
솔커예요.
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/app/university/search/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const SearchBar = ({ initText, homeUniversitySlug }: SearchBarProps) => {
<input
type="text"
placeholder={"해외 파견 학교를 검색하세요."}
className="w-full rounded-lg border border-gray-200 bg-k-50 p-3 pl-4 pr-10 text-k-600 focus:border-primary"
className="w-full rounded-lg border border-gray-c-200 bg-k-50 p-3 pl-4 pr-10 text-k-600 focus:border-primary"
{...register("searchText")}
/>
<div className="absolute right-3 top-1/2 h-5 w-5 -translate-y-1/2 text-gray-400">
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
}

.score-table th {
@apply typo-sb-7 text-black;
@apply text-black typo-sb-7;
}

.score-table tbody tr {
@apply flex h-10 items-center px-3 py-0;
}

.score-table td {
@apply min-w-[30px] flex-1 overflow-hidden whitespace-nowrap typo-medium-3 text-gray-600;
@apply min-w-[30px] flex-1 overflow-hidden whitespace-nowrap text-gray-600 typo-medium-3;
}

.score-table td:nth-of-type(5) {
Expand Down
2 changes: 2 additions & 0 deletions apps/web/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ const config: Config = {
},
"gray-c": {
"100": "#ececec",
"200": "#e5e7eb",
"300": "#f9fafb",
},
// 하드코딩된 회색 계열 색상
gray: {
Expand Down
Loading