We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e87b065 commit 785810aCopy full SHA for 785810a
pages/docs/index.html
@@ -88,6 +88,8 @@
88
}
89
.markdown-body {
90
padding: 32px 16px;
91
+
92
+ min-height: 100vh;
93
94
.sc-scrollbar::-webkit-scrollbar {
95
width: 8px;
@@ -325,6 +327,8 @@
325
327
326
328
constructor() {
329
this.$root.classList.add("markdown-body");
330
+ this.$root.innerHTML = "loading...";
331
+ document.body.appendChild(this.$root);
332
333
334
cache = {};
@@ -345,8 +349,6 @@
345
349
346
350
mount() {
347
351
this.$root.innerHTML = this.html_content;
348
- document.body.appendChild(this.$root);
-
352
this.indexer.render();
353
354
0 commit comments