Skip to content

Commit c63bf4f

Browse files
committed
Fix conflicts
2 parents dbb4802 + 8537ceb commit c63bf4f

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

__tests__/fixtures/tailwind-output.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3477,6 +3477,10 @@ button,
34773477
position: relative;
34783478
}
34793479

3480+
.sticky {
3481+
position: sticky;
3482+
}
3483+
34803484
.pin-none {
34813485
top: auto;
34823486
right: auto;
@@ -7360,6 +7364,10 @@ button,
73607364
position: relative;
73617365
}
73627366

7367+
.sm\:sticky {
7368+
position: sticky;
7369+
}
7370+
73637371
.sm\:pin-none {
73647372
top: auto;
73657373
right: auto;
@@ -11236,6 +11244,10 @@ button,
1123611244
position: relative;
1123711245
}
1123811246

11247+
.md\:sticky {
11248+
position: sticky;
11249+
}
11250+
1123911251
.md\:pin-none {
1124011252
top: auto;
1124111253
right: auto;
@@ -15112,6 +15124,10 @@ button,
1511215124
position: relative;
1511315125
}
1511415126

15127+
.lg\:sticky {
15128+
position: sticky;
15129+
}
15130+
1511515131
.lg\:pin-none {
1511615132
top: auto;
1511715133
right: auto;
@@ -18988,6 +19004,10 @@ button,
1898819004
position: relative;
1898919005
}
1899019006

19007+
.xl\:sticky {
19008+
position: sticky;
19009+
}
19010+
1899119011
.xl\:pin-none {
1899219012
top: auto;
1899319013
right: auto;

src/generators/position.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export default function() {
66
fixed: { position: 'fixed' },
77
absolute: { position: 'absolute' },
88
relative: { position: 'relative' },
9+
sticky: { position: 'sticky' },
910
'pin-none': {
1011
top: 'auto',
1112
right: 'auto',

0 commit comments

Comments
 (0)