@bbki.ng/ui 0.1.6 → 0.1.8

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.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 352e08b: fix graident blur utility cls
8
+
9
+ ## 0.1.7
10
+
11
+ ### Patch Changes
12
+
13
+ - aaee63e: fix style
14
+ - eada3c3: fix style
15
+ - 7b07af6: fix style
16
+
3
17
  ## 0.1.6
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.6",
3
+ "version": "0.1.8",
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
  };
@@ -7,14 +7,13 @@ import {
7
7
  ErrorBoundaryProps,
8
8
  ErrorBoundaryState,
9
9
  } from './Page.types';
10
- import { Container } from '../../layout';
11
10
 
12
11
  export const Page = (props: PageProps) => {
13
12
  const { nav, main } = props;
14
13
 
15
14
  return (
16
15
  <main className="flex flex-col h-full">
17
- <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>
18
17
  {/* secctio padding top 192px */}
19
18
  <section className="grow shrink-0">{main}</section>
20
19
  </main>
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
  }