Some WS fixxes

This commit is contained in:
Simon Martens
2025-04-14 20:46:01 +02:00
parent 8b5805e038
commit 133a9ac9ef
2 changed files with 10 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@@ -77,7 +77,6 @@
.text { .text {
@apply font-serif max-w-[80ch] relative; @apply font-serif max-w-[80ch] relative;
overflow: auto;
} }
.text .page, .text .page,
@@ -95,7 +94,7 @@
.text .del, .text .del,
.text .fn, .text .fn,
.text .anchor { .text .anchor {
@apply inline-block; @apply inline;
} }
.text .aq { .text .aq {
@@ -103,12 +102,11 @@
} }
.text .line { .text .line {
@apply w-0; @apply inline;
font-size: 0 !important;
} }
.text .line.tab-1 { .text .line.tab-1 {
@apply w-4; @apply inline-block w-4;
} }
.text br.index-1 { .text br.index-1 {
@@ -141,7 +139,8 @@
} }
.text .align.pos-center { .text .align.pos-center {
width: max-content; @apply text-center inline-block;
width: w-full;
position: relative; position: relative;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
@@ -176,4 +175,8 @@
@apply absolute inset-x-0 top-1/2 h-px bg-black; @apply absolute inset-x-0 top-1/2 h-px bg-black;
top: 55%; top: 55%;
} }
.text .note {
@apply w-full bg-slate-100 italic;
}
} }