Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
fix: missing grid classes
Browse files Browse the repository at this point in the history
  • Loading branch information
luangjokaj committed Jan 5, 2021
1 parent 5f542a8 commit e7ad577
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cherry-postcss",
"version": "0.0.1-1",
"version": "0.0.1-2",
"description": "Cherry for PostCSS",
"author": "Luan Gjokaj <[email protected]>",
"homepage": "https://cherry.design",
Expand Down
32 changes: 32 additions & 0 deletions src/grid/col.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@
@mixin col12;
}

.col-auto {
@mixin col-auto;
}

.col-order-first {
order: -1;
}
Expand Down Expand Up @@ -192,6 +196,10 @@
@mixin col12;
}

.col-xs-auto {
@mixin col-auto;
}

.col-xs-order-first {
order: -1;
}
Expand Down Expand Up @@ -250,6 +258,10 @@
@mixin col12;
}

.col-sm-auto {
@mixin col-auto;
}

.col-sm-order-first {
order: -1;
}
Expand Down Expand Up @@ -308,6 +320,10 @@
@mixin col12;
}

.col-md-auto {
@mixin col-auto;
}

.col-md-order-first {
order: -1;
}
Expand Down Expand Up @@ -366,6 +382,10 @@
@mixin col12;
}

.col-lg-auto {
@mixin col-auto;
}

.col-lg-order-first {
order: -1;
}
Expand Down Expand Up @@ -424,6 +444,10 @@
@mixin col12;
}

.col-xl-auto {
@mixin col-auto;
}

.col-xl-order-first {
order: -1;
}
Expand Down Expand Up @@ -482,6 +506,10 @@
@mixin col12;
}

.col-xxl-auto {
@mixin col-auto;
}

.col-xxl-order-first {
order: -1;
}
Expand Down Expand Up @@ -540,6 +568,10 @@
@mixin col12;
}

.col-xxxl-auto {
@mixin col-auto;
}

.col-xxxl-order-first {
order: -1;
}
Expand Down

0 comments on commit e7ad577

Please sign in to comment.