Files
Brandy Carney 9020d5278a fix(content): fix padding/margin attributes so all work on scroll-content
created a mixin for padding and margin and pass the mode variable in.
2016-04-14 17:17:44 -04:00

26 lines
564 B
SCSS

@import "../../globals.wp";
@import "./content";
// Windows Content
// --------------------------------------------------
$content-wp-padding: $content-padding !default;
$content-wp-margin: $content-margin !default;
ion-content {
background-color: $background-wp-color;
}
// Windows Content Padding
// --------------------------------------------------
@include content-padding($content-wp-padding);
// Windows Content Margin
// --------------------------------------------------
@include content-margin($content-wp-margin);