mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Merge branch 'sebastiandedeyne-add-position-sticky'
This commit is contained in:
commit
7831312c12
@ -3477,6 +3477,10 @@ button,
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.sticky {
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
.pin-none {
|
||||
top: auto;
|
||||
right: auto;
|
||||
@ -7360,6 +7364,10 @@ button,
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.sm\:sticky {
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
.sm\:pin-none {
|
||||
top: auto;
|
||||
right: auto;
|
||||
@ -11236,6 +11244,10 @@ button,
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.md\:sticky {
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
.md\:pin-none {
|
||||
top: auto;
|
||||
right: auto;
|
||||
@ -15112,6 +15124,10 @@ button,
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.lg\:sticky {
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
.lg\:pin-none {
|
||||
top: auto;
|
||||
right: auto;
|
||||
@ -18988,6 +19004,10 @@ button,
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.xl\:sticky {
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
.xl\:pin-none {
|
||||
top: auto;
|
||||
right: auto;
|
||||
|
||||
@ -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',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user