Skip to content

Commit 462add8

Browse files
committed
changed contents width
1 parent 443a9e6 commit 462add8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Diff for: components/about/AboutPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const AboutPage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="HelloSlideについて">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

Diff for: components/changelog/ChangelogPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const ChangelogPage: React.FC<{logData: ChangelogData[]}> = ({logData}) => {
1818
return (
1919
<Center key={value.version}>
2020
<Box
21-
width={{base: '700px', sm: '80%', md: '700px'}}
21+
width={{base: '80%', sm: '80%', md: '700px'}}
2222
margin="1rem 0 1rem 0"
2323
>
2424
<Flex>

Diff for: components/privacyPolicy/PrivacyPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const PrivacyPage: React.FC<{contents: string}> = ({contents}) => {
1414
return (
1515
<InfoText title="プライバシーポリシー">
1616
<Center>
17-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
17+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1818
<Markdown text={contents} />
1919
</Box>
2020
</Center>

Diff for: components/question/QuestionPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const QuestionPage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="よくある質問">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

Diff for: components/terms/TermsPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const TermsPage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="利用規約">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

Diff for: components/usage/UsagePage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const UsagePage: React.FC<{contents: string}> = ({contents}) => {
1515
return (
1616
<InfoText title="使い方">
1717
<Center>
18-
<Box width={{base: '700px', sm: '80%', md: '700px'}}>
18+
<Box width={{base: '80%', sm: '80%', md: '700px'}}>
1919
<Markdown text={contents} />
2020
</Box>
2121
</Center>

0 commit comments

Comments
 (0)