Skip to content

Commit

Permalink
sanity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Soviut committed Oct 16, 2020
1 parent 02da679 commit 597b338
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -11114,6 +11114,10 @@ video {
max-width: 100%;
}

.max-w-read {
max-width: 65ch;
}

.max-w-screen-sm {
max-width: 640px;
}
Expand Down Expand Up @@ -15088,6 +15092,10 @@ video {
width: 100%;
}

.w-read {
width: 65ch;
}

.w-screen {
width: 100vw;
}
Expand Down Expand Up @@ -28633,6 +28641,10 @@ video {
max-width: 100%;
}

.sm\:max-w-read {
max-width: 65ch;
}

.sm\:max-w-screen-sm {
max-width: 640px;
}
Expand Down Expand Up @@ -32607,6 +32619,10 @@ video {
width: 100%;
}

.sm\:w-read {
width: 65ch;
}

.sm\:w-screen {
width: 100vw;
}
Expand Down Expand Up @@ -46122,6 +46138,10 @@ video {
max-width: 100%;
}

.md\:max-w-read {
max-width: 65ch;
}

.md\:max-w-screen-sm {
max-width: 640px;
}
Expand Down Expand Up @@ -50096,6 +50116,10 @@ video {
width: 100%;
}

.md\:w-read {
width: 65ch;
}

.md\:w-screen {
width: 100vw;
}
Expand Down Expand Up @@ -63611,6 +63635,10 @@ video {
max-width: 100%;
}

.lg\:max-w-read {
max-width: 65ch;
}

.lg\:max-w-screen-sm {
max-width: 640px;
}
Expand Down Expand Up @@ -67585,6 +67613,10 @@ video {
width: 100%;
}

.lg\:w-read {
width: 65ch;
}

.lg\:w-screen {
width: 100vw;
}
Expand Down Expand Up @@ -81100,6 +81132,10 @@ video {
max-width: 100%;
}

.xl\:max-w-read {
max-width: 65ch;
}

.xl\:max-w-screen-sm {
max-width: 640px;
}
Expand Down Expand Up @@ -85074,6 +85110,10 @@ video {
width: 100%;
}

.xl\:w-read {
width: 65ch;
}

.xl\:w-screen {
width: 100vw;
}
Expand Down
2 changes: 1 addition & 1 deletion stubs/defaultConfig.stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ module.exports = {
'10/12': '83.333333%',
'11/12': '91.666667%',
full: '100%',
screen: '100vw',
read: '65ch',
screen: '100vw',
}),
zIndex: {
auto: 'auto',
Expand Down

0 comments on commit 597b338

Please sign in to comment.