Skip to content

Commit

Permalink
fix(demo): fix scroll in mobile layout
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrc authored and pamfilos committed Jun 24, 2024
1 parent a784c03 commit 1515624
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions formule-demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function App() {
</Row>
</Modal>
<Layout style={{ height: "100%" }}>
<Content>
<Content style={{ overflowY: "scroll" }}>
<FormuleContext
theme={theme}
synchronizeState={handleFormuleStateChange}
Expand All @@ -85,7 +85,6 @@ function App() {
height: "100%",
display: "flex",
}}
className="tour-field-types"
>
<SelectOrEdit />
</Col>
Expand All @@ -97,7 +96,6 @@ function App() {
padding: "0px 15px",
backgroundColor: "#F6F7F8",
}}
className="tour-schema-preview"
>
<SchemaPreview />
</Col>
Expand All @@ -109,7 +107,6 @@ function App() {
height: "100%",
padding: "0px 15px",
}}
className="tour-form-preview"
>
<FormPreview liveValidate={true} />
</Col>
Expand Down

0 comments on commit 1515624

Please sign in to comment.