Upgrade to Gatsby v2

This commit is contained in:
alxshelepenok
2018-11-09 20:08:48 +03:00
parent e83dfc6dff
commit 8b92891329
204 changed files with 18708 additions and 3904 deletions

View File

@@ -22,4 +22,4 @@
@media screen and (min-width: $layout-breakpoint-lg) {
@content
}
}
}

View File

@@ -4,4 +4,4 @@
@mixin line-height($number) {
line-height: #{ $number * $typographic-leading + "px"};
}
}

View File

@@ -14,10 +14,12 @@
@if $left==null and $bottom==null {
margin: #{ $top * $typographic-leading + "px"} #{ $right * $typographic-leading + "px"};
}
@else if $left==null or $left==$right {
margin: #{ $top * $typographic-leading + "px"} #{ $right * $typographic-leading + "px"} #{ $bottom * $typographic-leading + "px"};
}
@else {
margin: #{ $top * $typographic-leading + "px"} #{ $right * $typographic-leading + "px"} #{ $bottom * $typographic-leading + "px"} #{ $left * $typographic-leading + "px"};
}
}
}

View File

@@ -16,4 +16,4 @@
@mixin padding-equal($number) {
padding: #{ $number * $typographic-leading + "px"};
}
}