seemore 1.8.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/app/styles/globals.css +7 -4
package/README.md
CHANGED
|
@@ -126,7 +126,7 @@ Install **seemore** from the [VS Code Marketplace](https://marketplace.visualstu
|
|
|
126
126
|
| --- | --- | --- |
|
|
127
127
|
| **Open in seemore** | Editor title bar, on any Markdown file | Renders that file's folder as a site |
|
|
128
128
|
| **Open Folder in seemore** | Explorer, right-click a folder | Renders that folder as a site and pins it as the root |
|
|
129
|
-
| **
|
|
129
|
+
| **Choose Root** | Status bar item, or the command palette | Pins the folder being served, clears a pinned root, or picks another folder to serve |
|
|
130
130
|
|
|
131
131
|
### Settings
|
|
132
132
|
|
package/package.json
CHANGED
|
@@ -185,8 +185,11 @@
|
|
|
185
185
|
@apply fixed inset-0 z-30 bg-black/40 md:hidden;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
+
/* A flex column, so the site footer can take `mt-auto`: on a page too short to fill the
|
|
189
|
+
viewport it settles at the bottom instead of floating mid-screen, and on a long one the
|
|
190
|
+
`gap-10` is all that separates it from the content above. */
|
|
188
191
|
.seemore-main {
|
|
189
|
-
@apply mx-auto min-w-0 max-w-3xl flex-1 px-4 py-8 md:px-8;
|
|
192
|
+
@apply mx-auto flex min-w-0 max-w-3xl flex-1 flex-col gap-10 px-4 py-8 md:px-8;
|
|
190
193
|
}
|
|
191
194
|
|
|
192
195
|
/* Docs are full of long identifiers — `EmbeddedPaymentsController`,
|
|
@@ -224,7 +227,7 @@
|
|
|
224
227
|
}
|
|
225
228
|
|
|
226
229
|
.seemore-page-footer {
|
|
227
|
-
@apply
|
|
230
|
+
@apply grid grid-cols-2 gap-4 border-t border-fd-border pt-6 text-sm;
|
|
228
231
|
}
|
|
229
232
|
|
|
230
233
|
.seemore-next {
|
|
@@ -236,11 +239,11 @@
|
|
|
236
239
|
}
|
|
237
240
|
|
|
238
241
|
.seemore-edit-link {
|
|
239
|
-
@apply
|
|
242
|
+
@apply inline-flex items-center gap-2 self-start text-sm text-fd-muted-foreground;
|
|
240
243
|
}
|
|
241
244
|
|
|
242
245
|
.seemore-site-footer {
|
|
243
|
-
@apply mt-
|
|
246
|
+
@apply mt-auto flex flex-wrap gap-4 border-t border-fd-border pt-6 text-sm text-fd-muted-foreground;
|
|
244
247
|
}
|
|
245
248
|
|
|
246
249
|
/* The generated index page: pages as cards, folders as titled sections of cards. */
|