@markuxt/markuxt 0.1.13 → 0.1.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuxt/markuxt",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "A Markdown-first academic portal framework for laboratories, research groups, and knowledge communities, powered by Nuxt.",
5
5
  "author": "hnrobert",
6
6
  "license": "Apache-2.0",
@@ -19,6 +19,13 @@
19
19
  "app.config.d.ts",
20
20
  "src/"
21
21
  ],
22
+ "scripts": {
23
+ "dev": "nuxt dev",
24
+ "build": "nuxt build",
25
+ "generate": "nuxt generate",
26
+ "pack:local": "pnpm pack --pack-destination /tmp/markuxt-dist",
27
+ "postinstall": "nuxt prepare"
28
+ },
22
29
  "dependencies": {
23
30
  "@icon-park/vue-next": "^1.4.2",
24
31
  "@nuxt/content": "^2.13.2",
@@ -33,12 +40,5 @@
33
40
  "@types/node": "^25.2.3",
34
41
  "typescript": "^5.7.3",
35
42
  "vue-tsc": "^3.2.4"
36
- },
37
- "scripts": {
38
- "dev": "nuxt dev",
39
- "build": "nuxt build",
40
- "generate": "nuxt generate",
41
- "pack:local": "pnpm pack --pack-destination /tmp/markuxt-dist",
42
- "postinstall": "nuxt prepare"
43
43
  }
44
- }
44
+ }
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <section class="hero">
3
- <div class="container">
3
+ <div class="container hero__container">
4
4
  <div class="hero__grid">
5
5
  <div class="hero__content">
6
6
  <span class="hero__badge">{{ badge || t('hero.badge') }}</span>
@@ -184,6 +184,10 @@ onUnmounted(() => {
184
184
  z-index: -1;
185
185
  }
186
186
 
187
+ .hero__container {
188
+ padding-inline: var(--spacing-2xl);
189
+ }
190
+
187
191
  .hero__grid {
188
192
  display: grid;
189
193
  grid-template-columns: 1.2fr 1fr;
@@ -395,6 +399,10 @@ onUnmounted(() => {
395
399
  padding-bottom: var(--spacing-2xl);
396
400
  }
397
401
 
402
+ .hero__container {
403
+ padding-inline: var(--spacing-xl);
404
+ }
405
+
398
406
  .hero__grid {
399
407
  grid-template-columns: 1fr;
400
408
  gap: var(--spacing-2xl);