Skip to content

Commit

Permalink
Merge pull request #148 from iest/master
Browse files Browse the repository at this point in the history
Make play nice with later postcss plugins
  • Loading branch information
corysimmons committed Jul 6, 2015
2 parents 5dd134d + ca1a3aa commit c6606cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions lost.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,16 @@ module.exports = postcss.plugin('lost', function lost(settings) {

newBlock(
decl,
':after, :before',
['content', 'display'],
['\'\'', 'table']
':after',
['content', 'display', 'clear'],
['\'\'', 'table', 'both']
);

newBlock(
decl,
':after',
['clear'],
['both']
':before',
['content', 'display'],
['\'\'', 'table']
);
}

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": "lost",
"version": "6.4.0",
"version": "6.5.0",
"description": "PostCSS fractional grid system built with calc() by the guy who built Jeet. Supports masonry, vertical, and waffle grids.",
"main": "lost.js",
"repository": {
Expand Down

0 comments on commit c6606cf

Please sign in to comment.