Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorJohnAlbin <virtually.johnalbin@gmail.com>2015-11-04 17:30:14 +0300
committerJohnAlbin <virtually.johnalbin@gmail.com>2015-11-04 17:30:14 +0300
commit5a0496c8a1cf07d7416e43e188acfefca225abf2 (patch)
treef8949eac2d76121d56db1cd3345370fbb230f01b /sass
parent04376a54c6549b85f54e4b22e1d78fcbc0916966 (diff)
Remove output-rhythm().
Diffstat (limited to 'sass')
-rw-r--r--sass/_normalize.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/sass/_normalize.scss b/sass/_normalize.scss
index b76c756..9d8b369 100644
--- a/sass/_normalize.scss
+++ b/sass/_normalize.scss
@@ -154,7 +154,7 @@ strong {
*/
blockquote {
- @include output-rhythm(margin, rhythm(1) $indent-amount);
+ margin: rhythm(1) $indent-amount;
}
}
@@ -235,7 +235,7 @@ h1 {
p,
pre {
- @include output-rhythm(margin, rhythm(1) 0);
+ margin: rhythm(1) 0;
}
}
@@ -279,7 +279,7 @@ sub {
menu,
ol,
ul {
- @include output-rhythm(margin, rhythm(1) 0);
+ margin: rhythm(1) 0;
}
@if not $strict-normalize {
@@ -357,7 +357,7 @@ svg:not(:root) {
*/
figure {
- @include output-rhythm(margin, rhythm(1) $indent-amount);
+ margin: rhythm(1) $indent-amount;
}
}