Skip to content

Commit

Permalink
Merge branch 'hotfix/0.16.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
HarwinBorger committed Oct 4, 2018
2 parents d1b2b44 + 978d001 commit ec2b04a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "spaceframework",
"description": "Front-end development made for into Space!",
"version": "0.16.1",
"version": "0.16.2",
"main": "",
"authors": [
"Harwin Borger <harwin@studioborger.nl>"
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
@@ -1,5 +1,7 @@
# SpaceLog

## [0.16.2] Fix calculation of capline and median values - 04-10-2018

## [0.16.1] Fix space unit variable - 07-09-2018
### Fixed
- Print space-unit-variables outside the media query instead of inside.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
@@ -1,6 +1,6 @@
{
"name": "harwinborger/spaceframework",
"version": "0.16.1",
"version": "0.16.2",
"description": "Vertical grid system",
"keywords": [
"foundation",
Expand Down
3 changes: 1 addition & 2 deletions dist/css/style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/style.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "spaceframework",
"version": "0.16.1",
"version": "0.16.2",
"author": "Harwin Borger <info@studioborger.nl>",
"licence": "GPL-3.0-only",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions scss/2.tools/_space-font.scss
Expand Up @@ -230,14 +230,14 @@ $short-variable: (
// Add element to .align-capline object
@if (space-support(align-capline)) {
#{$class-align-capline} & {
--s: translateY(calc(0 - #{getVar($font-preset-value, capheight)}));
--s: translateY(calc(#{getVar($font-preset-value, capheight)} * -1));
transform: var(--s);
}
}

@if (space-support(align-median)) {
#{$class-align-median} & {
--s: translateY(calc(0 - #{getVar($font-preset-value, xheight)}));
--s: translateY(calc(#{getVar($font-preset-value, xheight)} * -1));
transform: var(--s);
}
}
Expand Down

0 comments on commit ec2b04a

Please sign in to comment.