@nil-/doc 0.2.26 → 0.2.28
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @nil-/doc
|
|
2
2
|
|
|
3
|
+
## 0.2.28
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [doc][fix] reorder css style ([#37](https://github.com/njaldea/mono/pull/37))
|
|
8
|
+
|
|
9
|
+
## 0.2.27
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [doc] fix fira code css import ([#35](https://github.com/njaldea/mono/pull/35))
|
|
14
|
+
|
|
3
15
|
## 0.2.26
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/components/Layout.svelte
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
<style>
|
|
2
|
+
@import url("https://fonts.googleapis.com/css?family=Fira%20Code");
|
|
3
|
+
|
|
2
4
|
.layout {
|
|
3
5
|
width: 100%;
|
|
4
6
|
height: 100%;
|
|
@@ -14,11 +16,6 @@
|
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
/* reset block */
|
|
17
|
-
@font-face {
|
|
18
|
-
font-family: "Fira Code";
|
|
19
|
-
src: url("https://fonts.googleapis.com/css?family=Fira Code");
|
|
20
|
-
}
|
|
21
|
-
|
|
22
19
|
.reset {
|
|
23
20
|
width: 100%;
|
|
24
21
|
height: 100%;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
<style>
|
|
2
|
+
@import url("https://fonts.googleapis.com/css?family=Fira%20Code");
|
|
3
|
+
|
|
2
4
|
div {
|
|
3
5
|
display: flex;
|
|
4
6
|
flex-direction: column;
|
|
@@ -6,11 +8,6 @@
|
|
|
6
8
|
}
|
|
7
9
|
|
|
8
10
|
/* reset block */
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: "Fira Code";
|
|
11
|
-
src: url("https://fonts.googleapis.com/css?family=Fira Code");
|
|
12
|
-
}
|
|
13
|
-
|
|
14
11
|
.reset {
|
|
15
12
|
width: 100%;
|
|
16
13
|
height: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nil-/doc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.28",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "njaldea@gmail.com",
|
|
6
6
|
"name": "Neil Aldea"
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"@sveltejs/kit": "^1.0.1",
|
|
12
12
|
"@sveltejs/package": "^1.0.1",
|
|
13
13
|
"mdsvex": "^0.10.6",
|
|
14
|
-
"svelte-check": "^2.10.
|
|
14
|
+
"svelte-check": "^2.10.3",
|
|
15
15
|
"svelte-markdown": "^0.2.3",
|
|
16
16
|
"tslib": "^2.4.1",
|
|
17
17
|
"typescript": "^4.9.4",
|
|
18
|
-
"vite": "^4.0.
|
|
18
|
+
"vite": "^4.0.3"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"svelte": "^3.55.0"
|