Skip to content

Commit

Permalink
feat: set background- & text color
Browse files Browse the repository at this point in the history
  • Loading branch information
lmestel committed Feb 26, 2024
1 parent 794a1d3 commit fdd2657
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/components/SchemaView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ const SchemaContainer = styled.div`
`;

const SchemaDocContainer = styled.div`
flex: 2;
flex: 1;
overflow: auto;
background: #fff;
color: #172b4d;
${forSize("desktop-up", "max-width: 500px;")}
`;

const SchemaEditorContainer = styled.div`
flex: 2;
flex: 1;
display: none;
position: relative;
overflow: hidden;
${forSize("tablet-landscape-up", "display: block;")}
${forSize("desktop-up", "flex: 3;")}
section {
overflow: hidden;
Expand Down

0 comments on commit fdd2657

Please sign in to comment.