Skip to content

Commit

Permalink
Update editor content heading sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
noahheck committed Aug 5, 2020
1 parent b23f850 commit 5ac3fe4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -13535,8 +13535,9 @@ trix-editor:empty:not(:focus)::before {
}

.editor-content h2 {
font-size: 1.9em;
font-size: 1.8em;
margin: 10px 0 6px 0;
font-weight: bold;
}

@media (max-width: 767.98px) {
Expand All @@ -13546,8 +13547,9 @@ trix-editor:empty:not(:focus)::before {
}

.editor-content h3 {
font-size: 1.5em;
font-size: 1.4em;
margin: 8px 0 6px 0;
font-weight: bold;
}

@media (max-width: 767.98px) {
Expand Down
6 changes: 4 additions & 2 deletions resources/sass/trix.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,17 @@ trix-editor {
}

.editor-content h2 {
font-size: 1.9em;
font-size: 1.8em;
margin: 10px 0 6px 0;
font-weight: bold;
@include media-breakpoint-down(sm) {
font-size: 1.4em;
}
}
.editor-content h3 {
font-size: 1.5em;
font-size: 1.4em;
margin: 8px 0 6px 0;
font-weight: bold;
@include media-breakpoint-down(sm) {
font-size: 1.25em;
}
Expand Down

0 comments on commit 5ac3fe4

Please sign in to comment.