Skip to content

Commit

Permalink
fix: Replace invalid sass rules with correct ones
Browse files Browse the repository at this point in the history
Replace invalid combinators, for reference see https://sass-lang.com/documentation/breaking-changes/bogus-combinators

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Jun 22, 2023
1 parent 9b000f3 commit 816f9de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/css/prosemirror.scss
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ div.ProseMirror {
table-layout: auto;
white-space: normal; // force text to wrapping
margin-bottom: 1em;
+ & {
&+ * {
margin-top: 1em;
}

Expand Down
2 changes: 1 addition & 1 deletion src/nodes/Callout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
align-items: center;
justify-content: flex-start;
+ & {
&+ * {
margin-top: 0.5em;
}
Expand Down

0 comments on commit 816f9de

Please sign in to comment.