@markuxt/markuxt 0.1.9 → 0.1.14
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.
|
|
3
|
+
"version": "0.1.14",
|
|
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",
|
|
@@ -10,12 +10,22 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/markuxt/markuxt.git"
|
|
12
12
|
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
13
16
|
"files": [
|
|
14
17
|
"nuxt.config.ts",
|
|
15
18
|
"app.config.ts",
|
|
16
19
|
"app.config.d.ts",
|
|
17
20
|
"src/"
|
|
18
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
|
+
},
|
|
19
29
|
"dependencies": {
|
|
20
30
|
"@icon-park/vue-next": "^1.4.2",
|
|
21
31
|
"@nuxt/content": "^2.13.2",
|
|
@@ -30,12 +40,5 @@
|
|
|
30
40
|
"@types/node": "^25.2.3",
|
|
31
41
|
"typescript": "^5.7.3",
|
|
32
42
|
"vue-tsc": "^3.2.4"
|
|
33
|
-
},
|
|
34
|
-
"scripts": {
|
|
35
|
-
"dev": "nuxt dev",
|
|
36
|
-
"build": "nuxt build",
|
|
37
|
-
"generate": "nuxt generate",
|
|
38
|
-
"pack:local": "pnpm pack --pack-destination /tmp/markuxt-dist",
|
|
39
|
-
"postinstall": "nuxt prepare"
|
|
40
43
|
}
|
|
41
|
-
}
|
|
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);
|