Fixed indentations

This commit is contained in:
Pedro Reis 2015-10-14 12:35:18 +01:00
parent 0a38e0ef15
commit 435c592ff1
1 changed files with 23 additions and 23 deletions

View File

@ -3,9 +3,9 @@
*/ */
@mixin resp-min($size) { @mixin resp-min($size) {
@media screen and (min-width: $size) { @media screen and (min-width: $size) {
@content; @content;
} }
} }
@ -14,9 +14,9 @@
*/ */
@mixin resp-max($size) { @mixin resp-max($size) {
@media screen and (max-width: $size) { @media screen and (max-width: $size) {
@content; @content;
} }
} }
@ -25,8 +25,8 @@
*/ */
@mixin font-size($px) { @mixin font-size($px) {
font-size: $px + px; font-size: $px + px;
font-size: #{$px / 16}rem; font-size: #{$px / 16}rem;
} }
@ -34,13 +34,13 @@
* Placeholder mixin for <input> * Placeholder mixin for <input>
*/ */
@mixin placeholder() { @mixin placeholder {
$placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input"; $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
@each $placeholder in $placeholders { @each $placeholder in $placeholders {
&:#{$placeholder}-placeholder { &:#{$placeholder}-placeholder {
@content; @content;
}
} }
}
} }
@ -48,13 +48,13 @@
* Clearfix * Clearfix
*/ */
@mixin clearfix() { @mixin clearfix {
&:before, &:before,
&:after{ &:after{
content: " "; content: " ";
display: table; display: table;
} }
&:after{ &:after{
clear: both; clear: both;
} }
} }