CSS Library
TLDR: install into your project and add barbajoe.css
to your
root file
Install scripts:
npm i -D @barbajoe/css-lib
pnpm add -D @barbajoe/css-lib
yarn add -D @barbajoe/css-lib
Import into your root file:
import "@barbajoe/css-lib/dist/barbajoe.css";
Components
Layout
Sets a Header, Footer, and a main body section that auto expands to the view
height (vh
)
Usage
Requires that you have the structure:
<body>
<div>
<main>
<header>{header content}</header>
{main content}
<footer>{footer content}</footer>
</main>
</div>
</body>