Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Composer/packages/client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ function App() {
</span>
</div>
</header>
<div style={{ backgroundColor: "#f6f6f6", height: "100vh" }}>
<div style={{ backgroundColor: "#f6f6f6", height: "calc(100vh - 50px)" }}>
<div
style={{
width: "80px",
backgroundColor: "#eaeaea",
height: "99vh",
height: "calc(99vh - 50px)",
float: "left"
}}
>
Expand All @@ -99,7 +99,9 @@ function App() {
</div>
<div
style={{
height: '100%',
display: "flex",
overflow: 'auto',
marginLeft: "80px",
zIndex: 2
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const container = css`
max-width: 1190px;
background-color: #ffffff;
height: 870px;
overflow: scroll;
overflow: auto;
`;

export const top = css`
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/client/src/components/Tree/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const container = variant => css`
width: 325px;
background-color: #ffffff;
height: ${variant && variant === "large" ? "500px" : "350px"};
overflow: scroll;
overflow: auto;
`;

export const top = css`
Expand Down
1 change: 1 addition & 0 deletions Composer/packages/client/src/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
body {
margin: 0;
padding: 0;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
Expand Down