Commit 6f5f92d7 authored by Lyza Danger Gardner's avatar Lyza Danger Gardner

Add horizontal spacing mixin

parent 31a20e5a
......@@ -82,7 +82,7 @@
}
/**
* Establish vertical space outside of elements in the container
* Establish vertical space outside of elements within the container
*
* @param $size [var.$layout-space--medium]: Spacing size (padding)
*/
......@@ -90,3 +90,13 @@
padding-top: $size;
padding-bottom: $size;
}
/**
* Establish horizontal space outside of elements within the container
*
* @param $size [var.$layout-space--medium]: Spacing size (padding)
*/
@mixin horizontal-space($size: var.$layout-space--medium) {
padding-left: $size;
padding-right: $size;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment