Skip to content

Commit

Permalink
Make --text-left work with --condensed
Browse files Browse the repository at this point in the history
  • Loading branch information
cecilieboe committed Aug 3, 2017
1 parent e3b9c09 commit 681689e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
git-tag-version=false
registry=***REMOVED***
package-lock=false
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v.8.0.1

* `--text-left` now also works with `--condensed`

## v.8.0.0

* BREAKING: Changed `--hide-md` modifier to hide columns between `sm` and `md` breakpoints instead of `md` and `lg` to be consistent with `--hide-sm`.
Expand Down
3 changes: 2 additions & 1 deletion less/table.less
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
.ffe-table__heading,
.ffe-table__content,
.ffe-table__cell {
padding-left: 0;
// Set !important to make --text-left work with --condensed which sets padding to 10px
padding-left: 0 !important;
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffe-tables",
"version": "8.0.0",
"version": "8.0.1",
"main": "less/tables.less",
"scripts": {
"compile": "npm run lint && lessc example/example.less example/example.css && cp -R node_modules/ffe-core/fonts/ example/fonts/ && echo \"$(date +%T): Updated example\"",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 681689e

Please sign in to comment.