diff --git a/frontend/README.md b/frontend/README.md index b6099b70..6c944be1 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,2 +1,3 @@ ## 세종대학교 바이오융합전공 홈페이지 + ![image](https://github.com/user-attachments/assets/fdd66cc3-a936-440d-bac3-2ebd96c1920c) diff --git a/frontend/src/components/Modal/templates/TermsModal.tsx b/frontend/src/components/Modal/templates/TermsModal.tsx index 81176dce..9ce9b6ff 100644 --- a/frontend/src/components/Modal/templates/TermsModal.tsx +++ b/frontend/src/components/Modal/templates/TermsModal.tsx @@ -87,39 +87,6 @@ const StyledHeader = styled(Modal.Header)` border-bottom: 1px solid #e5e7eb; `; -const StyledFooter = styled(Modal.Footer)` - padding: 1.5rem 2rem; - border-top: 1px solid #e5e7eb; - display: flex; - justify-content: flex-end; - gap: 1rem; -`; - -const CloseButton = styled(Modal.CloseButton)` - padding: 0.75rem 2rem; - background-color: #1a73e8; - color: white; - border: none; - border-radius: 4px; - font-weight: 500; - cursor: pointer; - transition: background-color 0.2s ease; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, - 'Helvetica Neue', Arial, sans-serif; - font-size: 1rem; - letter-spacing: -0.01em; - line-height: 1.5; - -webkit-font-smoothing: antialiased; - - &:hover { - background-color: #1557b0; - } - - &:focus { - outline: none; - } -`; - export interface TermsModalProps { type: 'terms' | 'privacy' | 'collection'; isOpen: boolean; diff --git a/frontend/src/index.css b/frontend/src/index.css index 69880293..a0dc30f9 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -2,7 +2,8 @@ box-sizing: border-box; } -html, body { +html, +body { margin: 0; padding: 0; width: 100%; @@ -20,8 +21,8 @@ html, body { body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 6c72de55..74d87657 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -15,8 +15,13 @@ "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", - "typeRoots": ["./node_modules/@types", "src/types"], + "typeRoots": ["./node_modules/@types", "src/types"] }, - "include": ["src/**/*", "src/types/**/*", "src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts" + "include": [ + "src/**/*", + "src/types/**/*", + "src/**/*.ts", + "src/**/*.tsx", + "src/**/*.d.ts" ] }