Skip to content

Commit

Permalink
Refactor PrivacyPolicyDialog and privacy page styles
Browse files Browse the repository at this point in the history
  • Loading branch information
coji committed Oct 23, 2024
1 parent ea4365e commit 64e69ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/PrivacyPolicyDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const PrivacyPolicyDialog = () => {
</span>

<Dialog open={isOpen} onOpenChange={(open) => setIsOpen(open)}>
<DialogContent className="flex max-h-[32rem] flex-col gap-4 text-black">
<DialogContent className="flex max-h-[32rem] flex-col gap-4">
<DialogHeader className="text-xl font-bold">
{t('privacy.dialog.title', 'TechTalk プライバシーポリシー')}
</DialogHeader>
Expand Down
2 changes: 1 addition & 1 deletion app/routes/_public+/privacy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const meta: MetaFunction = () => [
export default function Privacy() {
return (
<>
<Heading className="my-16 text-center text-4xl font-black">
<Heading className="my-16 text-center text-4xl">
TechTalkプライバシーポリシー
</Heading>

Expand Down
2 changes: 1 addition & 1 deletion app/styles/privacy.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@

.markdown p a {
text-decoration: underline;
color: indigo;
color: rgb(76, 68, 228);
}

0 comments on commit 64e69ef

Please sign in to comment.