Skip to content

Commit

Permalink
Merge pull request #340 from dabapps/spacing-auto-typos
Browse files Browse the repository at this point in the history
Fix typos in spacing top auto classes
  • Loading branch information
JakeSidSmith authored Oct 2, 2020
2 parents 008b701 + c786b28 commit 5053049
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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": "@dabapps/roe",
"version": "0.11.1",
"version": "0.11.2",
"description": "A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.",
"main": "dist/js/index.js",
"types": "dist/js/index.d.ts",
Expand Down
16 changes: 8 additions & 8 deletions src/less/spacing.less
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
}

.@{prefix}-@{style}-top-auto {
.spacing-directional-styles(@style, 0, toauto);
.spacing-directional-styles(@style, auto, top);
}

.@{prefix}-@{style}-top-base {
Expand All @@ -102,7 +102,7 @@
}

.@{prefix}-@{style}-right-auto {
.spacing-directional-styles(@style, 0, righauto);
.spacing-directional-styles(@style, auto, right);
}

.@{prefix}-@{style}-right-base {
Expand All @@ -122,7 +122,7 @@
}

.@{prefix}-@{style}-bottom-auto {
.spacing-directional-styles(@style, 0, bottoauto);
.spacing-directional-styles(@style, auto, bottom);
}

.@{prefix}-@{style}-bottom-base {
Expand All @@ -142,7 +142,7 @@
}

.@{prefix}-@{style}-left-auto {
.spacing-directional-styles(@style, 0, lefauto);
.spacing-directional-styles(@style, auto, left);
}

.@{prefix}-@{style}-left-base {
Expand Down Expand Up @@ -223,7 +223,7 @@
}

.@{style}-top-auto {
.spacing-directional-styles(@style, 0, toauto);
.spacing-directional-styles(@style, auto, top);
}

.@{style}-top-base {
Expand All @@ -247,7 +247,7 @@
}

.@{style}-right-auto {
.spacing-directional-styles(@style, 0, righauto);
.spacing-directional-styles(@style, auto, right);
}

.@{style}-right-small {
Expand All @@ -263,7 +263,7 @@
}

.@{style}-bottom-auto {
.spacing-directional-styles(@style, 0, bottoauto);
.spacing-directional-styles(@style, auto, bottom);
}

.@{style}-bottom-base {
Expand All @@ -283,7 +283,7 @@
}

.@{style}-left-auto {
.spacing-directional-styles(@style, 0, lefauto);
.spacing-directional-styles(@style, auto, left);
}

.@{style}-left-base {
Expand Down

0 comments on commit 5053049

Please sign in to comment.