Skip to content

Commit

Permalink
adjust border color of playground editor in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Jun 9, 2024
1 parent 2f01274 commit 8a470b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion playground/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ main {

.CodeMirror {
height: auto;
border: solid 1px #555;
border: solid 1px #ccc;
border-radius: 4px;
}

Expand Down Expand Up @@ -102,6 +102,10 @@ footer {
}

@media (prefers-color-scheme: dark) {
.CodeMirror {
border: solid 1px #555;
}

#lint-result {
--bulma-table-background-color: #222;
}
Expand Down

0 comments on commit 8a470b5

Please sign in to comment.