Optimizations
- Mixin & variable file structure organization
- Separate folder for files that output CSS
.ds-font-imports()
mixin encapsulates all google font imports
.flex()
and .square()
layout helpers
data-colors
mixins no longer invoked in-file
- New google font for
.ds-font-code
Breaking Changes
- Updated name-spacing: all mixins are now prefixed with
.ds-
, ex: .ds-font-smoothing(on)
- Font imports must now be invoked where you plan to use the variables, ex:
body {
.ds-font-imports();
font-family: @ds-font-custom;
}