Skip to content

Commit

Permalink
style: add text underline in privacy and terms
Browse files Browse the repository at this point in the history
  • Loading branch information
moolmin committed Oct 9, 2024
1 parent c166c7b commit 1371adb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ const nextConfig = withAntdLess({
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'cdn.qqqq.world',
port: '',
pathname: '/**',
}
],
},
transpilePackages: ['antd', '@ant-design', 'rc-util', 'rc-pagination', 'rc-picker', 'rc-notification', 'rc-tooltip'],
Expand Down
1 change: 1 addition & 0 deletions src/app/(pages)/(landing)/_components/footer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@
color: #CCCCCC;
margin: 5px;
}

4 changes: 2 additions & 2 deletions src/app/(pages)/(landing)/_components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ export default function Footer() {
type="link"
href={privacyPolicyUrl}
target="_blank"
style={{ color: "#CCCCCC", marginLeft: '10px', padding: 0, fontSize: '12px'}}
style={{ color: "#CCCCCC", marginLeft: '10px', padding: 0, fontSize: '12px', textDecoration: 'underline'}}
>
개인정보처리방침
</Button>
<Button
type="link"
href={termsOfServiceUrl}
target="_blank"
style={{ color: "#CCCCCC", fontSize: '12px'}}
style={{ color: "#CCCCCC", fontSize: '12px', textDecoration: 'underline'}}
>
서비스 이용약관
</Button>
Expand Down

0 comments on commit 1371adb

Please sign in to comment.