Skip to content

Commit

Permalink
Merge pull request #49 from aperezdc/config-defaults
Browse files Browse the repository at this point in the history
Allow overriding configuration values
  • Loading branch information
matejlatin authored Aug 22, 2016
2 parents 86e0b86 + b151d96 commit 7f60255
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/style/_gutenberg-config.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/* Configuration
========================================================================== */

$edit-mode: true; // [ true / false ] - Enables/disables the grid toggle button.
$edit-mode: true !default; // [ true / false ] - Enables/disables the grid toggle button.

// Theme / Fonts
$theme: Merriweather; // [ Merriweather / OpenSans / custom ]
$theme: Merriweather !default; // [ Merriweather / OpenSans / custom ]
$custom-font-body: null !default; // [ "Libre Baskerville", Georgia, serif ]
$custom-font-headings: null !default;

Expand All @@ -14,9 +14,9 @@ $paragraph-indent: false; // [ true / false ]
// Base sizes
$base-font-size: 100 !default; // In %. Also used for mobile. Number only, no units.
$base-font-size-desktop: 112.5 !default; // In %. Used to calculate the desktop font size. Number only, no units.
$line-height: 1.625;
$line-height-desktop: 1.7;
$max-width: 35; // Number only, no units. Gets converted to REMs and pixels.
$line-height: 1.625 !default;
$line-height-desktop: 1.7 !default;
$max-width: 35 !default; // Number only, no units. Gets converted to REMs and pixels.

// Modular Scale
$modular-scale: (
Expand All @@ -33,10 +33,10 @@ $modular-scale: (
) !default;

// Colors
$color-font-body: #222;
$color-font-headings: $color-font-body;
$color-font-light: #888;
$color-font-figcaption: $color-font-body;
$color-font-body: #222 !default;
$color-font-headings: $color-font-body !default;
$color-font-light: #888 !default;
$color-font-figcaption: $color-font-body !default;

/* Calculations
========================================================================== */
Expand Down

0 comments on commit 7f60255

Please sign in to comment.