cmdesigns 0.0.22 → 0.0.24
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 +3 -2
- package/src/BaseLayout.astro +2 -1
- package/src/Footer.astro +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmdesigns",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"description": "An attempt at putting common chrissx Media design elements into a library.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"index.ts"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"astro-favicon": "^0.0.5"
|
|
18
|
+
"astro-favicon": "^0.0.5",
|
|
19
|
+
"normalize.css": "^8.0.1"
|
|
19
20
|
},
|
|
20
21
|
"devDependencies": {
|
|
21
22
|
"astro": "^3.1.0"
|
package/src/BaseLayout.astro
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
import Favicon from "astro-favicon";
|
|
3
3
|
import Footer from "./Footer.astro";
|
|
4
|
+
import "normalize.css/normalize.css";
|
|
4
5
|
|
|
5
6
|
export interface Props {
|
|
6
7
|
title: string;
|
|
@@ -48,7 +49,7 @@ let { title, favicon, lang, copyrightstart, copyrightend, rightsholder, repo, de
|
|
|
48
49
|
--transpink: 255, 176, 192;
|
|
49
50
|
}
|
|
50
51
|
|
|
51
|
-
|
|
52
|
+
body {
|
|
52
53
|
font-family: Unifont, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
|
|
53
54
|
Bitstream Vera Sans Mono, Courier New, monospace;
|
|
54
55
|
color: white;
|