Skip to content

Commit

Permalink
Rename flex-no-wrap to flex-nowrap (#2676)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Oct 27, 2020
1 parent 52c3437 commit 8613259
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
12 changes: 6 additions & 6 deletions __tests__/fixtures/tailwind-output-flagged.css
Expand Up @@ -9158,7 +9158,7 @@ video {
flex-wrap: wrap-reverse;
}

.flex-no-wrap {
.flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -32138,7 +32138,7 @@ video {
flex-wrap: wrap-reverse;
}

.sm\:flex-no-wrap {
.sm\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -55088,7 +55088,7 @@ video {
flex-wrap: wrap-reverse;
}

.md\:flex-no-wrap {
.md\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -78038,7 +78038,7 @@ video {
flex-wrap: wrap-reverse;
}

.lg\:flex-no-wrap {
.lg\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -100988,7 +100988,7 @@ video {
flex-wrap: wrap-reverse;
}

.xl\:flex-no-wrap {
.xl\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -123938,7 +123938,7 @@ video {
flex-wrap: wrap-reverse;
}

.\32xl\:flex-no-wrap {
.\32xl\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down
12 changes: 6 additions & 6 deletions __tests__/fixtures/tailwind-output-important.css
Expand Up @@ -9158,7 +9158,7 @@ video {
flex-wrap: wrap-reverse !important;
}

.flex-no-wrap {
.flex-nowrap {
flex-wrap: nowrap !important;
}

Expand Down Expand Up @@ -32138,7 +32138,7 @@ video {
flex-wrap: wrap-reverse !important;
}

.sm\:flex-no-wrap {
.sm\:flex-nowrap {
flex-wrap: nowrap !important;
}

Expand Down Expand Up @@ -55088,7 +55088,7 @@ video {
flex-wrap: wrap-reverse !important;
}

.md\:flex-no-wrap {
.md\:flex-nowrap {
flex-wrap: nowrap !important;
}

Expand Down Expand Up @@ -78038,7 +78038,7 @@ video {
flex-wrap: wrap-reverse !important;
}

.lg\:flex-no-wrap {
.lg\:flex-nowrap {
flex-wrap: nowrap !important;
}

Expand Down Expand Up @@ -100988,7 +100988,7 @@ video {
flex-wrap: wrap-reverse !important;
}

.xl\:flex-no-wrap {
.xl\:flex-nowrap {
flex-wrap: nowrap !important;
}

Expand Down Expand Up @@ -123938,7 +123938,7 @@ video {
flex-wrap: wrap-reverse !important;
}

.\32xl\:flex-no-wrap {
.\32xl\:flex-nowrap {
flex-wrap: nowrap !important;
}

Expand Down
12 changes: 6 additions & 6 deletions __tests__/fixtures/tailwind-output-no-color-opacity.css
Expand Up @@ -8042,7 +8042,7 @@ video {
flex-wrap: wrap-reverse;
}

.flex-no-wrap {
.flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -29162,7 +29162,7 @@ video {
flex-wrap: wrap-reverse;
}

.sm\:flex-no-wrap {
.sm\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -50252,7 +50252,7 @@ video {
flex-wrap: wrap-reverse;
}

.md\:flex-no-wrap {
.md\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -71342,7 +71342,7 @@ video {
flex-wrap: wrap-reverse;
}

.lg\:flex-no-wrap {
.lg\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -92432,7 +92432,7 @@ video {
flex-wrap: wrap-reverse;
}

.xl\:flex-no-wrap {
.xl\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -113522,7 +113522,7 @@ video {
flex-wrap: wrap-reverse;
}

.\32xl\:flex-no-wrap {
.\32xl\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down
12 changes: 6 additions & 6 deletions __tests__/fixtures/tailwind-output.css
Expand Up @@ -9158,7 +9158,7 @@ video {
flex-wrap: wrap-reverse;
}

.flex-no-wrap {
.flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -32138,7 +32138,7 @@ video {
flex-wrap: wrap-reverse;
}

.sm\:flex-no-wrap {
.sm\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -55088,7 +55088,7 @@ video {
flex-wrap: wrap-reverse;
}

.md\:flex-no-wrap {
.md\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -78038,7 +78038,7 @@ video {
flex-wrap: wrap-reverse;
}

.lg\:flex-no-wrap {
.lg\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -100988,7 +100988,7 @@ video {
flex-wrap: wrap-reverse;
}

.xl\:flex-no-wrap {
.xl\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down Expand Up @@ -123938,7 +123938,7 @@ video {
flex-wrap: wrap-reverse;
}

.\32xl\:flex-no-wrap {
.\32xl\:flex-nowrap {
flex-wrap: nowrap;
}

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/flexWrap.js
Expand Up @@ -8,7 +8,7 @@ export default function () {
'.flex-wrap-reverse': {
'flex-wrap': 'wrap-reverse',
},
'.flex-no-wrap': {
'.flex-nowrap': {
'flex-wrap': 'nowrap',
},
},
Expand Down

0 comments on commit 8613259

Please sign in to comment.