Skip to content

Commit

Permalink
enhance editor frame border
Browse files Browse the repository at this point in the history
  • Loading branch information
reorx committed Oct 16, 2022
1 parent 195f411 commit 3acf2dc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions live-server/editor/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
:root {
--frame-border: 5px solid #ddd;
}

html, body {
margin: 0;
padding: 0;
Expand All @@ -22,7 +26,7 @@ html, body {
flex-direction: column;
}
.main .right {
border-left: 5px solid #ddd;
border-left: var(--frame-border);
}

/* left */
Expand All @@ -39,7 +43,7 @@ html, body {
.editor {
flex-grow: 1;
position: relative;
border-top: 1px solid #aaa;
border-top: var(--frame-border);
}

/* right */
Expand Down

0 comments on commit 3acf2dc

Please sign in to comment.