style(css): fix sass linter errors and add descriptions to css files

This commit is contained in:
Brandy Carney
2018-07-18 11:34:49 -04:00
parent 9488a98da0
commit 7d030ce27c
10 changed files with 47 additions and 15 deletions

View File

@ -1,9 +1,18 @@
@import "../themes/ionic.globals";
@import "../themes/ionic.mixins";
// Element Space
// --------------------------------------------------
// Creates padding and margin attributes to be used on
// any element
$padding: var(--ion-padding, 16px);
$margin: var(--ion-margin, 16px);
// Padding
// --------------------------------------------------
[no-padding] {
@include padding(0);
@ -61,10 +70,10 @@ $margin: var(--ion-margin, 16px);
}
// Content Margin
// Margin
// --------------------------------------------------
ion-app [no-margin] {
[no-margin] {
@include margin(0);
}
@ -105,4 +114,3 @@ ion-app [no-margin] {
[margin-horizontal] {
@include margin-horizontal($margin);
}