Skip to content

Commit

Permalink
Little padding.
Browse files Browse the repository at this point in the history
  • Loading branch information
thesoftwarephilosopher committed Aug 22, 2024
1 parent 19e9e33 commit 51ae21a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/monarch/monarch-playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ const editor2 = monaco.editor.create(editorContainer2, {
tabSize: 2,
});

editor1.layout({ width: 700, height: 1250 });
editor2.layout({ width: 700, height: 1250 });
editor1.layout({ width: 700, height: 1200 });
editor2.layout({ width: 700, height: 1200 });

updateTokenProvider();
editor1.onDidChangeModelContent(updateTokenProvider);
Expand Down
6 changes: 6 additions & 0 deletions site/monarch/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,10 @@ body {
display: flex;
gap: 1em;
}

#root > * {
padding: 1em;
border-radius: 7px;
background-color: #1b1f25;
}
}

0 comments on commit 51ae21a

Please sign in to comment.