@bbki.ng/ui 0.1.5 → 0.1.7

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,19 @@
1
1
  # @bbki.ng/ui
2
2
 
3
+ ## 0.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - aaee63e: fix style
8
+ - eada3c3: fix style
9
+ - 7b07af6: fix style
10
+
11
+ ## 0.1.6
12
+
13
+ ### Patch Changes
14
+
15
+ - 3308d28: fix layout
16
+
3
17
  ## 0.1.5
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/ui",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Design system component library for bbki.ng",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -17,7 +17,7 @@ export const Article = (props: ArticleProps) => {
17
17
  )}
18
18
  </div>
19
19
  {description && <div className="mb-8 text-content-secondary">{description}</div>}
20
- <div className="text-content-primary relative">{children || content}</div>
20
+ <div className="text-content-primary! relative">{children || content}</div>
21
21
  </div>
22
22
  );
23
23
  };
@@ -13,9 +13,9 @@ export const Page = (props: PageProps) => {
13
13
 
14
14
  return (
15
15
  <main className="flex flex-col h-full">
16
- <div className="flex-grow-0 w-full fixed top-0 z-50">{nav}</div>
16
+ <div className="grow-0 w-full fixed top-0 z-50">{nav}</div>
17
17
  {/* secctio padding top 192px */}
18
- <section className="grow shrink-0 px-4 pt-32">{main}</section>
18
+ <section className="grow shrink-0">{main}</section>
19
19
  </main>
20
20
  );
21
21
  };
package/src/styles.css CHANGED
@@ -113,6 +113,10 @@
113
113
  background-image: linear-gradient(#ffffff, #ffffff80);
114
114
  }
115
115
 
116
+ @utility prose {
117
+ color: #111;
118
+ }
119
+
116
120
  @utility lqip-blur {
117
121
  backdrop-filter: blur(20px);
118
122
  }