@press2ai/theme-specialist-glossy 0.11.3 → 0.11.4
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/package.json +1 -1
- package/src/ai.ts +1 -1
- package/src/styles/glossy.css +2 -1
- package/src/styles/profile-article.ts +3 -2
- package/src/templates/layout.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@press2ai/theme-specialist-glossy",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "Classless, AI-first glossy theme. Framework-agnostic templates (Hono, Astro, raw HTML). Semantic HTML, Schema.org microdata, JSON-LD — built for LLM crawlers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/src/ai.ts
CHANGED
package/src/styles/glossy.css
CHANGED
|
@@ -269,8 +269,9 @@ section:has(> article[itemscope]) > article[itemscope] > a:last-child {
|
|
|
269
269
|
section:has(> article[itemscope]) > article[itemscope] > a:last-child:hover { color: var(--ink); gap: 4px; }
|
|
270
270
|
|
|
271
271
|
/* Single trainer — Swiss design */
|
|
272
|
+
main:has(> article) { margin-inline: 0; }
|
|
272
273
|
main > article {
|
|
273
|
-
max-width: var(--w-8);
|
|
274
|
+
max-width: var(--w-8);
|
|
274
275
|
padding: var(--g5) 0;
|
|
275
276
|
}
|
|
276
277
|
main > article > header { padding-bottom: var(--g4); margin-bottom: var(--g4); border-bottom: 2px solid var(--ink); }
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export const css = `main
|
|
2
|
-
|
|
1
|
+
export const css = `main:has(> article) { margin-inline: 0; }
|
|
2
|
+
main > article {
|
|
3
|
+
max-width: var(--w-8);
|
|
3
4
|
padding: var(--g5) 0;
|
|
4
5
|
}
|
|
5
6
|
main > article > header { padding-bottom: var(--g4); margin-bottom: var(--g4); border-bottom: 2px solid var(--ink); }
|