@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 +14 -0
- package/package.json +1 -1
- package/src/molecules/article/Article.tsx +1 -1
- package/src/organisms/page/Page.tsx +1 -2
- package/src/styles.css +4 -0
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
|
@@ -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="
|
|
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>
|