fix: ensure we are loading events properly during fsdb scan

fix: various styling issues on smaller screens
fix: map z-index
This commit is contained in:
Andy Burke 2026-02-24 15:54:56 -08:00
parent 873773bc91
commit 2d12104875
10 changed files with 126 additions and 38 deletions

View file

@ -14,6 +14,7 @@
"preview"
"title"
"info"
"reactions"
"content"
"newessay"
"replies";
@ -71,6 +72,10 @@
font-size: xx-large;
}
.essay-container .reactions-container {
grid-area: reactions;
}
.essay-container .content-container {
grid-area: content;
padding-left: 0.25rem;
@ -78,6 +83,10 @@
font-size: large;
}
.essay-container .content-container .html-from-markdown {
padding: 1em;
}
.essay-container button[commandfor="eventactionspopover"] {
position: absolute;
bottom: 0.25rem;
@ -189,11 +198,11 @@
<span class="short">${context.essay_datetime.short}</span>
</div>
</div>
<div class="reactions-container"></div>
<div class="title-container">${context.essay.data.title}</div>
<div class="content-container">
${htmlify(md_to_html(context.essay.data.essay))}
</div>
<div class="reactions-container"></div>
<button class="icon more" commandfor="eventactionspopover"></button>
</div>
</template>