Skip to content

Commit

Permalink
Revert "chore: add and fix margins inside super note content [skip e2e]"
Browse files Browse the repository at this point in the history
This reverts commit 562e1be.
  • Loading branch information
amanharwara committed Apr 17, 2024
1 parent b240e3a commit 9c2bf94
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
hr {
padding: 2px 0px;
border: none;
margin: 0.825em 0;
margin: 1em 0;
cursor: pointer;
}

Expand All @@ -40,23 +40,3 @@
user-select: none;
}
}

.ContentEditable__root,
.Collapsible__content {
> *:not(:first-child) {
margin-block-start: 0.825em;
}

// Remove extra margin around empty paragraphs
.Lexical__paragraph:has(br:first-child) {
margin-block-start: 0;

& + * {
margin-block-start: 0;
}
}

.Lexical__listItem {
margin-block-end: 0.325em;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
text-align: right;
}
.Lexical__paragraph {
margin: 0;
position: relative;
}
.Lexical__quote {
margin: 0;
margin-left: 20px;
margin-bottom: 10px;
color: var(--sn-stylekit-passive-color-1);
border-left-color: var(--sn-stylekit-passive-color-1);
border-left-width: 4px;
Expand All @@ -28,18 +31,21 @@
}
}
.Lexical__h1 {
font-size: 1.75em;
font-size: 26px;
color: var(--sn-stylekit-editor-foreground-color);
font-weight: 700;
margin: 0;
}
.Lexical__h2 {
font-size: 1.5em;
font-size: 22px;
color: var(--sn-stylekit-editor-foreground-color);
font-weight: 700;
margin: 0;
}
.Lexical__h3 {
font-size: 1.3em;
font-size: 19px;
font-weight: 700;
margin: 0;
}
.Lexical__textBold {
font-weight: bold;
Expand Down Expand Up @@ -88,6 +94,7 @@
font-family: var(--sn-stylekit-monospace-font), monospace;
display: block;
padding: 1.25rem 1.35rem;
margin: 0.5rem 0;
tab-size: 2;
overflow-x: auto;
position: relative;
Expand All @@ -105,6 +112,7 @@
overflow-y: scroll;
table-layout: fixed;
width: calc(100% - 25px);
margin: 0.5rem 0;
color: var(--sn-stylekit-contrast-foreground-color);
}
.Lexical__tableSelection *::selection {
Expand Down

0 comments on commit 9c2bf94

Please sign in to comment.