cmdesigns 0.0.2 → 0.0.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/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import CMText from "./src/CMText.astro";
2
2
  import FGText from "./src/FGText.astro";
3
+ import Footer from "./src/Footer.astro";
3
4
 
4
- export { CMText, FGText };
5
+ export { CMText, FGText, Footer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmdesigns",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "An attempt at putting common chrissx Media design elements into a library.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -0,0 +1,17 @@
1
+ <footer>
2
+ <slot />
3
+ Copyright &copy; 2020-{new Date().getFullYear()} chrissx Media
4
+ </footer>
5
+
6
+ <style>
7
+ @import url(//fonts.chrissx.de/unifont);
8
+
9
+ footer {
10
+ font-family: Unifont, Menlo, Monaco, Lucida Console, Liberation Mono,
11
+ DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
12
+ text-align: center;
13
+ padding-bottom: 20px;
14
+ padding-top: 20px;
15
+ color: #c0c0c0;
16
+ }
17
+ </style>