From f80bf66d3bb01deead290961f5d8d3b579bd4195 Mon Sep 17 00:00:00 2001 From: Phil Date: Tue, 15 May 2018 11:22:35 +0200 Subject: SCSS with iotaCSS added --- src/scss/utilities/_padding.scss | 54 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/scss/utilities/_padding.scss (limited to 'src/scss/utilities/_padding.scss') diff --git a/src/scss/utilities/_padding.scss b/src/scss/utilities/_padding.scss new file mode 100644 index 0000000..dc85f53 --- /dev/null +++ b/src/scss/utilities/_padding.scss @@ -0,0 +1,54 @@ +/** + * Padding default gutter. Use a number for a simple size + * and a map for responsive. + * + * Type: Number / Map + */ + +$iota-utils-padding-default: $iota-global-gutter-default; + + +/** + * Padding extra gutters. + * + * Type: Map + */ + +$iota-utils-padding-extra: (); + + +/** + * Enables / Disables responsive classes + * + * Type: Boolean + */ + +$iota-utils-padding-res: false; + + +/** + * Breakpoints map. Overrides the breakpoints map only + * for padding utility. + * + * Type: Map + */ + +$iota-utils-padding-breakpoints: $iota-global-breakpoints; + + +/** + * Namespace classes + * + * Type: String + */ + +$iota-utils-padding-namespace : 'p'; +$iota-utils-padding-top-name : 't'; +$iota-utils-padding-right-name : 'r'; +$iota-utils-padding-bottom-name : 'b'; +$iota-utils-padding-left-name : 'l'; +$iota-utils-padding-vertical-name : 'v'; +$iota-utils-padding-horizontal-name : 'h'; + + +@import 'node_modules/iotacss/utilities/padding'; -- cgit v1.2.3