Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Releases: guardian/guss-layout

Removing rem dependency

06 Mar 11:24
Compare
Choose a tag to compare
v1.3.6

Rem dependency removed

Use sass-mq 3

12 Dec 14:54
Compare
Choose a tag to compare
1.3.5

Use sass-mq 3

Add browser feature detection

22 Oct 12:04
Compare
Choose a tag to compare

Adds option to use client-side feature detection for the flex/no-flex branching.

Add l-row--reverse modifier

17 Sep 13:36
Compare
Choose a tag to compare

Allows a user to change the flex-direction of a row to reverse.

Accommodate updates to sass-mq

02 Sep 11:06
Compare
Choose a tag to compare

Sass-mq has deprecated the $to keyword argument, in favour of $until. This accommodates that change.

v1.3.1 - Minor fixes

26 Aug 16:02
Compare
Choose a tag to compare
  • Update links to examples
  • Add SassDoc groups

v1.3.0 - output values in pixel units only & SassDoc

26 Aug 14:51
Compare
Choose a tag to compare
  • Removes guss-rem dependency
  • Outputs values in px units instead of rem + px fallback
  • Inline documentation uses SassDoc notation.

Thanks to @hugogiraudel for his precious help.

v1.2.2 - Bug fixes

09 Jun 11:21
Compare
Choose a tag to compare
  • [fix] Text does not overflow out of columns on mobile
  • [fix] Variable name
  • [new] Link to demos in project README

v1.2.1 - Fix column fallback clear issues

05 Jun 15:09
Compare
Choose a tag to compare
  • [fix] Columns fallback break properly, using clear: both on the correct nth-children

See #6 for details.

v1.2.0 - Per-breakpoint fallbacks

05 Jun 10:37
Compare
Choose a tag to compare
  • Remove support for column rules
  • Add per-breakpoint fallbacks for columns without support for CSS3:
@include guss-columns(
    $base-class: '.advanced-test',
    $css3-columns-support: false, // Because buggy in some versions of WebKit
    $columns-fallback-width: (
        tablet: 720px,
        desktop: 940px
    ),
    $columns-fallback-columns: (
        tablet: 2,
        desktop: 4
    )
);