From 3d56df68aaf2272fd1c0c1982ecc6e2bc48c7407 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 21 Sep 2017 14:22:34 -0400 Subject: [PATCH] style(sass): fix sass-lint errors --- packages/core/src/components/content/content.ios.scss | 4 ++-- packages/core/src/components/content/content.md.scss | 4 ++-- packages/core/src/components/content/content.wp.scss | 4 ++-- packages/core/src/components/searchbar/searchbar.ios.scss | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/core/src/components/content/content.ios.scss b/packages/core/src/components/content/content.ios.scss index 810ceee170..818e0a64c3 100644 --- a/packages/core/src/components/content/content.ios.scss +++ b/packages/core/src/components/content/content.ios.scss @@ -48,13 +48,13 @@ $content-ios-transition-background: #000 !default; // iOS Content Padding // -------------------------------------------------- -@include content-padding('ios', $content-ios-padding); +@include content-padding("ios", $content-ios-padding); // iOS Content Margin // -------------------------------------------------- -@include content-margin('ios', $content-ios-margin); +@include content-margin("ios", $content-ios-margin); // iOS Content Scroll diff --git a/packages/core/src/components/content/content.md.scss b/packages/core/src/components/content/content.md.scss index 06150a255f..3e07172ef7 100644 --- a/packages/core/src/components/content/content.md.scss +++ b/packages/core/src/components/content/content.md.scss @@ -18,10 +18,10 @@ // Material Design Content Padding // -------------------------------------------------- -@include content-padding('md', $content-md-padding); +@include content-padding("md", $content-md-padding); // Material Design Content Margin // -------------------------------------------------- -@include content-margin('md', $content-md-margin); +@include content-margin("md", $content-md-margin); diff --git a/packages/core/src/components/content/content.wp.scss b/packages/core/src/components/content/content.wp.scss index b3abc6055c..6cc34b52ed 100644 --- a/packages/core/src/components/content/content.wp.scss +++ b/packages/core/src/components/content/content.wp.scss @@ -18,10 +18,10 @@ // Windows Content Padding // -------------------------------------------------- -@include content-padding('wp', $content-wp-padding); +@include content-padding("wp", $content-wp-padding); // Windows Content Margin // -------------------------------------------------- -@include content-margin('wp', $content-wp-margin); +@include content-margin("wp", $content-wp-margin); diff --git a/packages/core/src/components/searchbar/searchbar.ios.scss b/packages/core/src/components/searchbar/searchbar.ios.scss index 2273433fc3..d7568d42b5 100644 --- a/packages/core/src/components/searchbar/searchbar.ios.scss +++ b/packages/core/src/components/searchbar/searchbar.ios.scss @@ -77,7 +77,7 @@ $searchbar-ios-toolbar-input-background: rgba(0, 0, 0, .08) !default; // ----------------------------------------- @mixin ios-searchbar-icon($svg-icon, $fg-color) { - $svg: str-replace($svg-icon, 'fg-color', $fg-color); + $svg: str-replace($svg-icon, "fg-color", $fg-color); @include svg-background-image($svg, true); }