Skip to content

Commit

Permalink
Merge pull request #466 from vanillajonathan/patch-5
Browse files Browse the repository at this point in the history
Fix inconsistent border color
  • Loading branch information
Ionaru committed May 22, 2022
2 parents 3895e0a + 7f9ba6a commit eb51f0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/css/easymde.css
Expand Up @@ -15,7 +15,7 @@
.EasyMDEContainer .CodeMirror {
box-sizing: border-box;
height: auto;
border: 1px solid #ddd;
border: 1px solid #ced4da;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
padding: 10px;
Expand Down Expand Up @@ -68,9 +68,9 @@
-o-user-select: none;
user-select: none;
padding: 9px 10px;
border-top: 1px solid #bbb;
border-left: 1px solid #bbb;
border-right: 1px solid #bbb;
border-top: 1px solid #ced4da;
border-left: 1px solid #ced4da;
border-right: 1px solid #ced4da;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
Expand Down

0 comments on commit eb51f0f

Please sign in to comment.