Compare commits

..

No commits in common. "6286352b5ebc67b48f54c446e8f29a1984d9e2f3" and "a8fdecd74c0da57fc17248d9f28ccfa3d3f5e05a" have entirely different histories.

2 changed files with 8 additions and 7 deletions

2
.gitignore vendored
View File

@ -1,5 +1,3 @@
/target /target
/index /index
.env .env
*.db*
key

View File

@ -10,7 +10,7 @@ main {
border: solid 1px var(--color-text); border: solid 1px var(--color-text);
padding: 2rem; padding: 2rem;
min-block-size: 80%; min-block-size: 80%;
/* display: flex; */ display: flex;
flex-direction: column; flex-direction: column;
align-items: stretch; align-items: stretch;
@ -91,6 +91,7 @@ main {
@media all and (max-width: 650px) { @media all and (max-width: 650px) {
.ce-toolbar__actions { .ce-toolbar__actions {
&>*:nth-child(1), &>*:nth-child(1),
&>*:nth-child(2) { &>*:nth-child(2) {
border-radius: 0; border-radius: 0;
@ -140,12 +141,9 @@ main {
gap: var(--default-padding); gap: var(--default-padding);
} }
* {
border-radius: 0 !important;
}
.ce-block__content { .ce-block__content {
word-wrap: break-word; word-wrap: break-word;
display: contents;
} }
.ce-block { .ce-block {
@ -158,6 +156,10 @@ main {
padding-block: 0; padding-block: 0;
} }
.codex-editor--narrow {
/* margin-inline-end: -50px !important; */
}
.codex-editor { .codex-editor {
&>*:first-child { &>*:first-child {
@ -179,6 +181,7 @@ main {
.ce-paragraph { .ce-paragraph {
font-size: calc(var(--font-size) * 1.3); font-size: calc(var(--font-size) * 1.3);
/* margin-block: calc(var(--font-size) * 2.6); */
line-height: calc(var(--font-size) * 2); line-height: calc(var(--font-size) * 2);
} }