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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for target: 'ie11' config option #1635

Merged
merged 8 commits into from Apr 29, 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
56,125 changes: 56,125 additions & 0 deletions __tests__/fixtures/tailwind-output-ie11.css

Large diffs are not rendered by default.

120 changes: 60 additions & 60 deletions __tests__/fixtures/tailwind-output-important.css
Expand Up @@ -5736,10 +5736,6 @@ video {
display: inline !important;
}

.flow-root {
display: flow-root !important;
}

.flex {
display: flex !important;
}
Expand All @@ -5748,14 +5744,6 @@ video {
display: inline-flex !important;
}

.grid {
display: grid !important;
}

.inline-grid {
display: inline-grid !important;
}

.table {
display: table !important;
}
Expand Down Expand Up @@ -5792,6 +5780,18 @@ video {
display: table-row !important;
}

.flow-root {
display: flow-root !important;
}

.grid {
display: grid !important;
}

.inline-grid {
display: inline-grid !important;
}

.hidden {
display: none !important;
}
Expand Down Expand Up @@ -19473,10 +19473,6 @@ video {
display: inline !important;
}

.sm\:flow-root {
display: flow-root !important;
}

.sm\:flex {
display: flex !important;
}
Expand All @@ -19485,14 +19481,6 @@ video {
display: inline-flex !important;
}

.sm\:grid {
display: grid !important;
}

.sm\:inline-grid {
display: inline-grid !important;
}

.sm\:table {
display: table !important;
}
Expand Down Expand Up @@ -19529,6 +19517,18 @@ video {
display: table-row !important;
}

.sm\:flow-root {
display: flow-root !important;
}

.sm\:grid {
display: grid !important;
}

.sm\:inline-grid {
display: inline-grid !important;
}

.sm\:hidden {
display: none !important;
}
Expand Down Expand Up @@ -33211,10 +33211,6 @@ video {
display: inline !important;
}

.md\:flow-root {
display: flow-root !important;
}

.md\:flex {
display: flex !important;
}
Expand All @@ -33223,14 +33219,6 @@ video {
display: inline-flex !important;
}

.md\:grid {
display: grid !important;
}

.md\:inline-grid {
display: inline-grid !important;
}

.md\:table {
display: table !important;
}
Expand Down Expand Up @@ -33267,6 +33255,18 @@ video {
display: table-row !important;
}

.md\:flow-root {
display: flow-root !important;
}

.md\:grid {
display: grid !important;
}

.md\:inline-grid {
display: inline-grid !important;
}

.md\:hidden {
display: none !important;
}
Expand Down Expand Up @@ -46949,10 +46949,6 @@ video {
display: inline !important;
}

.lg\:flow-root {
display: flow-root !important;
}

.lg\:flex {
display: flex !important;
}
Expand All @@ -46961,14 +46957,6 @@ video {
display: inline-flex !important;
}

.lg\:grid {
display: grid !important;
}

.lg\:inline-grid {
display: inline-grid !important;
}

.lg\:table {
display: table !important;
}
Expand Down Expand Up @@ -47005,6 +46993,18 @@ video {
display: table-row !important;
}

.lg\:flow-root {
display: flow-root !important;
}

.lg\:grid {
display: grid !important;
}

.lg\:inline-grid {
display: inline-grid !important;
}

.lg\:hidden {
display: none !important;
}
Expand Down Expand Up @@ -60687,10 +60687,6 @@ video {
display: inline !important;
}

.xl\:flow-root {
display: flow-root !important;
}

.xl\:flex {
display: flex !important;
}
Expand All @@ -60699,14 +60695,6 @@ video {
display: inline-flex !important;
}

.xl\:grid {
display: grid !important;
}

.xl\:inline-grid {
display: inline-grid !important;
}

.xl\:table {
display: table !important;
}
Expand Down Expand Up @@ -60743,6 +60731,18 @@ video {
display: table-row !important;
}

.xl\:flow-root {
display: flow-root !important;
}

.xl\:grid {
display: grid !important;
}

.xl\:inline-grid {
display: inline-grid !important;
}

.xl\:hidden {
display: none !important;
}
Expand Down