0.0.2 • Published 2 years ago

@siimple/preset-elements v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@siimple/preset-elements

A preset for the siimple CSS toolkit that includes a collection of basic UI elements like buttons, alerts, and more!

Install

$ npm install --save @siimple/preset-elements

Include the elements styles in your siimple.config.js file:

import elements from "@siimple/preset-elements";

export default {
    // ...other configuration
    styles: {
        ...elements.styles,
        // ...other custom styles
    },
};

Usage

Just apply the element classname to the HTML tag that you want to style:

<button class="button">Submit</button>

Some elements will provide additional modifiers that you can use to change the default style of the element:

<button class="button is-secondary is-full">
    Full width button
</button>

License

MIT License.