Sassy Gridlover Versions Save

Super easy to use Sass mixins to establish a typographic system with modular scale and vertical rhythm. Based on the Gridlover app.

v6.0.5

5 years ago

Fixed

  • Better documentation. Now it clearly states that sgl-html() is mandatory for all the other mixins to work.

v6.0.4

5 years ago

Added

  • main attribute to package.json so it's easier to import Sassy Gridlover when using bundlers #21

v6.0.3

5 years ago

Fixed

  • Warning error in !global variables when using Dart Sass.

v6.0.2

5 years ago

Fixed

  • bower.json minor issue.

v6.0.1

5 years ago

Fixes

  • Failed to publish v6.0.0 correctly to npm and yarn.

v6.0.0

5 years ago

NOTE: This release contains breaking changes!

  • Refactored Sassy-Gridlover so it stays up to date with Gridlover.
    • Changed some defaults:
      • $sgl-base-font-size: $SGL_DEFAULT_FONT_SIZE. Deprecated
      • $sgl-base-font-size: 18.
      • $sgl-base-line-height: 1.2. Deprecated
      • $sgl-base-line-height: 1.3.
      • $sgl-base-unit: "pxrem". Deprecated
      • $sgl-base-unit: "em".
    • Added new steps to sgl-body() sgl-heading() and sgl-margins() mixins:
      • @mixin sgl-body($unit: $sgl-base-unit). Deprecated
      • sgl-body() now accepts 2 arguments:
        • $line-height-step: 0
        • $unit: $sgl-base-unit
        • @mixin sgl-body($line-height-step: 0, $unit: $sgl-base-unit).
      • @mixin sgl-heading($step, $unit: $sgl-base-unit, $base-value: $sgl-root-font-size). Deprecated
      • sgl-heading() now accepts 6 arguments (the first 4 are mandatory):
        • $font-size-step
        • $line-height-step
        • $margin-top-step
        • $margin-bottom-step
        • $unit: $sgl-base-unit
        • $base-value: $sgl-root-font-size
        • @mixin sgl-heading($font-size-step, $line-height-step, $margin-top-step, $margin-bottom-step, $unit: $sgl-base-unit, $base-value: $sgl-root-font-size).
      • @mixin sgl-margins($unit: $sgl-base-unit, $base-value: $sgl-root-font-size). Deprecated
      • sgl-margins() now accepts 4 arguments (the first 2 are mandatory):
        • $margin-top-step
        • $margin-bottom-step
        • $unit: $sgl-base-unit
        • $base-value: $sgl-root-font-size
        • @mixin sgl-margins($margin-top-step, $margin-bottom-step, $unit: $sgl-base-unit, $base-value: $sgl-root-font-size).
    • Added $sgl-debug-mode-max-width to center the text when debug mode is true.
    • Moved some list styles from _extras.scss to main.scss.
    • Cleaned up the docs.
    • Published Sassy-Gridlover as a yarn package.

v5.2.3

6 years ago
  • Merged #16 (Fixes sgl-extras variable).
  • Added .editorconfig.

v5.2.2

6 years ago

v5.2.1

6 years ago
  • Fixed MIT License for npm and bower packages.

v5.2.0

7 years ago