@bbki.ng/ui 0.1.6 → 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
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>
|