Skip to content

Commit

Permalink
Cleaned up warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
matejlatin committed Oct 8, 2016
1 parent 4bb1a06 commit 6c7b39e
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 53 deletions.
9 changes: 4 additions & 5 deletions assets/combined.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions src/style/_gutenberg-config.scss
Expand Up @@ -29,7 +29,7 @@ $modular-scale: (
xs: 1.4375,
xxs: 1.2,
xxxs: 1,
xxxxs: .8125
xxxxs: 0.8125
) !default;

// Colors
Expand Down Expand Up @@ -60,20 +60,22 @@ $font-headings: null;
@if $theme == Merriweather {

// Import Merriweather
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,700,400italic);
@import url("https://fonts.googleapis.com/css?family=Merriweather:400,700,400italic");

// Set body font
$font-body: Merriweather, Georgia, serif;

} @else if $theme == OpenSans {
}
@else if $theme == OpenSans {

// Import Open Sans
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic");

// Set body font
$font-body: Open Sans, Arial, Helvetica, Sans-serif;

} @else if $theme == custom {
}
@else if $theme == custom {

// Set custom body font
$font-body: $custom-font-body;
Expand Down
9 changes: 4 additions & 5 deletions src/style/gutenberg.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6c7b39e

Please sign in to comment.