Skip to content

Commit

Permalink
BUGFIX: Make hyphen size relative to font size
Browse files Browse the repository at this point in the history
Resolves: #10
  • Loading branch information
Sebobo committed Jul 1, 2019
1 parent d8a60ae commit c3aef76
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
@@ -1,15 +1,15 @@
.ck-content .shy {
background: rgba(175, 224, 239, .3);
padding: 0 4px;
padding: 0 .2em;
position: relative;
border-radius: 3px;
}

.ck-content .shy::before {
content: '';
border-bottom: 2px solid currentColor;
width: 6px;
border-bottom: .1em solid currentColor;
width: .2em;
position: absolute;
right: 1px;
right: .1em;
top: 50%;
}
8 changes: 4 additions & 4 deletions Resources/Public/HyphensEditor/Plugin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Resources/Public/HyphensEditor/Plugin.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c3aef76

Please sign in to comment.