Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Mar 12, 2018
2 parents dbb4802 + 8537ceb commit c63bf4f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -3477,6 +3477,10 @@ button,
position: relative;
}

.sticky {
position: sticky;
}

.pin-none {
top: auto;
right: auto;
Expand Down Expand Up @@ -7360,6 +7364,10 @@ button,
position: relative;
}

.sm\:sticky {
position: sticky;
}

.sm\:pin-none {
top: auto;
right: auto;
Expand Down Expand Up @@ -11236,6 +11244,10 @@ button,
position: relative;
}

.md\:sticky {
position: sticky;
}

.md\:pin-none {
top: auto;
right: auto;
Expand Down Expand Up @@ -15112,6 +15124,10 @@ button,
position: relative;
}

.lg\:sticky {
position: sticky;
}

.lg\:pin-none {
top: auto;
right: auto;
Expand Down Expand Up @@ -18988,6 +19004,10 @@ button,
position: relative;
}

.xl\:sticky {
position: sticky;
}

.xl\:pin-none {
top: auto;
right: auto;
Expand Down
1 change: 1 addition & 0 deletions src/generators/position.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default function() {
fixed: { position: 'fixed' },
absolute: { position: 'absolute' },
relative: { position: 'relative' },
sticky: { position: 'sticky' },
'pin-none': {
top: 'auto',
right: 'auto',
Expand Down

0 comments on commit c63bf4f

Please sign in to comment.