airtame-gooey
v2.5.1
Published
UI library for providing Airtame's visual identity
Downloads
43
Readme
Airtame Gooey is an SCSS Mixin library that helps provide the Airtame look and feel to your application. You can use it with your own HTML or with any templating engine you like. If you're using React, it works out of the box with the components from airtame/airtame-gooey-react
.
Installation
yarn add --dev airtame-gooey
or
npm install --save-dev airtame-gooey
Usage
Import the full library in your main SCSS file
@import 'path/to/node_modules/airtame-gooey/gooey'
If you using eyeglass, you can simply import it as an eyeglass module
@import 'gooey';
Alternatively, you can include only the parts that you need
@import 'path/to/node_modules/airtame-gooey/components/button/index';
or with eyeglass
@import 'gooey/components/button';
Development
Check the parent project airtame/gooey
for development instructions.