Skip to content

Commit

Permalink
fix(front): add overflowX
Browse files Browse the repository at this point in the history
Fix the problem of not being able to press the convert button depending on the size of the monitor
  • Loading branch information
SARDONYX-sard committed Oct 15, 2023
1 parent b42d5ed commit bc6425f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions frontend/src/components/pages/converter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default function Converter() {
placeContent: "center",
height: "calc(100% - 56px)",
width: "100%",
overflowX: "scroll",
}}
>
<ConvertForm />
Expand All @@ -28,10 +29,10 @@ export default function Converter() {
position="bottom-right"
reverseOrder={false}
toastOptions={{
style: {
color: "#fff",
background: "#1a1919e1",
}
style: {
color: "#fff",
background: "#1a1919e1",
},
}}
/>
</>
Expand Down

0 comments on commit bc6425f

Please sign in to comment.