2.1.1 • Published 4 years ago

@calvear/rsuite-styles v2.1.1

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

React Suite Styles

React Suite styles compiler for eases style base customization.

Structure šŸ“‹

ā”œā”€ā”€ README.md
ā”œā”€ā”€ LICENCE.md
ā”œā”€ā”€ CHANGELOG.md
ā”œā”€ā”€ src/
│   ā”œā”€ā”€ components/ # custom variables and components
│   ā”œā”€ā”€ fonts/ # Catamaran font
│   ā”œā”€ā”€ themes/
│   │   ā”œā”€ā”€ dark.less
│   │   └── lights.less
│   ā”œā”€ā”€ dark.less
│   └── light.less # default stylesheet
ā”œā”€ā”€ package.json
└── .stylelintrc.json

How To Use šŸ’”

Import stylesheet as usual from package.

import '@calvear/rsuite-styles';
import { Button } from 'rsuite';

export default function App()
{
    return (
        <page>
            <h1>Welcome to my App</h1>
            <Button appearance="primary">Press Me</Button>
        </page>
    );
}

For dark theme.

import '@calvear/rsuite-styles/dark.css';
import { Button } from 'rsuite';

export default function App()
{
    return (
        <page>
            <h1>Welcome to my App</h1>
            <Button appearance="primary">Press Me Dark</Button>
        </page>
    );
}

Linting 🧿

Project uses ESLint, for code formatting and code styling normalizing.

  • stylelint: CSS, SASS and LESS styles linter.

Changelog šŸ“„

For last changes see CHANGELOG.md file for details.

Built with šŸ› ļø

License šŸ“„

This project is licensed under the MIT License - see LICENSE.md file for details.


⌨ by Alvear Candia, Cristopher Alejandro

2.1.1

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago