Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename flex-no-wrap to flex-nowrap #2676

Merged
merged 1 commit into from Oct 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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