Releases: oddbird/susy
Releases · oddbird/susy
v3.0.8
Minor documentation update
v3.0.7 Release docs update 3.0.7
Deprecate Susy
Susy has been officially deprecated and will not receive any further updates.
BUGFIX: Mis-matched gutter alias defaults
v3.0.5 Fix gutter alias defaults
BUGFIX: Gutter function default
- BUGFIX: Gutter function works when default
columns
setting is not parser-friendly (e.g.150px susy-repeat(2)
). - Update dev dependencies.
Documentation update
- Fixes broken search in documentation
Documentation update
Nothing to see here…
[patch] Documentation & Versioning
- NEW:
susy-version()
function for accessing the active version number. - Minor documentation improvements.
Susy3!
See:
- Introducing Susy3
- Undesanding Spread in Susy3.
- Site moved to oddbird.net/susy/
- Docs moved to oddbird.net/susy/docs/
First Beta: With Calc Support
- BREAKING:
_prefix.scss
has been renamed_susy-prefix.scss
for clarity when importing. - BREAKING:
susy-call()
has been renamedsu-call()
.
since it is directly related to accessing thesu
functions. - BREAKING: Remove support for non-list
columns
:
'columns': 4
=>'columns': susy-repeat(4)
=='columns': 1 1 1 1
. - BREAKING: Remove support for
$count x $width
syntax incolumns
:
'columns': 4 x 120px
=>
'columns': susy-repeat(4, 120px)
=='columns': 120px 120px 120px 120px
. - BREAKING: Remove rubygems/bower, to distribute on npm only.
- BREAKING: Add support for
calc()
output,
so all mixed-unit grids are possible.
This means the old inside-static solution
has been replaced by calc() output as well. - BREAKING:
su-sum
has been renamed_su-sum
and is now considered a private function. - SVG background images now have a default size included.
You can override the default using the CSSbackground-size
property. - Add list-flattening to columns normalization,
so thatsusy-repeat()
can be used along-side other values. - Improved documentation