Skip to content

Commit

Permalink
style: tailwindcss 정렬 관련 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
amaran-th committed Aug 9, 2024
1 parent 971595b commit 49e0af0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"plugins": ["@typescript-eslint", "react", "tailwindcss"],
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const MilestoneHistoryStatusChangeButton = ({ historyId, status }: MilestoneHist
<button
type="button"
onClick={handleRejectButtonClick}
className="bg-admin-semantic-errpr-light hover:bg-admin-semantic-error-main rounded-sm py-2 text-white"
className="hover:bg-admin-semantic-error-main bg-admin-semantic-error-light rounded-sm py-2 text-white"
>
반려
</button>
Expand Down
6 changes: 4 additions & 2 deletions frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ module.exports = {
dark: '#3F3F3F',
},
semantic: {
'errpr-light': '#EC3B4C',
'error-main': '#B30818',
error: {
light: '#EC3B4C',
main: '#B30818',
},
},
},
},
Expand Down

0 comments on commit 49e0af0

Please sign in to comment.