SFF is a small frontend library containing basic typo and form styles with an easy to extend SCSS-API. It is not meant to be compiled without modifications to the default settings and therefore only provides the .scss files.
- Base styles
- Typography
- Buttons
- Forms
- Tables
- Responsive Flex-Grid
- Visibility Classes
Every variable in the default settings is marked as !default
and can be overwritten without copying any files.
See the main sff.scss file for the list of all variables.
Install with npm install sff
and add node_modules/sff/src
to your SASS include paths.
// Load Settings and Modules
@import 'sff';
// Full Include
@include sff();
// Individual Include
@include sff_base();
@include sff_typo();
@include sff_form();
@include sff_button();
@include sff_table();
@include sff_flex();
@include sff_visibility();