Skip to content

Commit 0d3b50e

Browse files
committed
Fix overflow issues pt. 2
1 parent 80be070 commit 0d3b50e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/Converter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const Converter = ({
6262

6363
<main
6464
css={css`
65-
${tw`flex flex-col md:min-height[calc(100vh - 3.5rem)]`}
65+
${tw`flex flex-col min-height[calc(100vh - 3.5rem)]`}
6666
`}
6767
>
6868
<div css={tw`w-full md:px-8 p-16 h-48 text-center`}>

components/Validator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const Validator = ({
5757

5858
<main
5959
css={css`
60-
${tw`flex flex-col md:min-height[calc(100vh - 3.5rem)]`}
60+
${tw`flex flex-col min-height[calc(100vh - 3.5rem)]`}
6161
`}
6262
>
6363
<div css={tw`w-full md:px-8 p-16 h-48 text-center`}>

pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function Home() {
1717
</Head>
1818
<main
1919
css={css`
20-
${tw`flex flex-col md:min-height[calc(100vh - 3.5rem)]`}
20+
${tw`flex flex-col min-height[calc(100vh - 3.5rem)]`}
2121
`}
2222
>
2323
<div

0 commit comments

Comments
 (0)