mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Add position static utilitiy
This commit is contained in:
parent
eccf6ed083
commit
bf3145277f
@ -2365,6 +2365,10 @@ button,
|
||||
display: none;
|
||||
}
|
||||
|
||||
.static {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.fixed {
|
||||
position: fixed;
|
||||
}
|
||||
@ -5490,6 +5494,10 @@ button,
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sm\:static {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.sm\:fixed {
|
||||
position: fixed;
|
||||
}
|
||||
@ -8616,6 +8624,10 @@ button,
|
||||
display: none;
|
||||
}
|
||||
|
||||
.md\:static {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.md\:fixed {
|
||||
position: fixed;
|
||||
}
|
||||
@ -11742,6 +11754,10 @@ button,
|
||||
display: none;
|
||||
}
|
||||
|
||||
.lg\:static {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.lg\:fixed {
|
||||
position: fixed;
|
||||
}
|
||||
@ -14868,6 +14884,10 @@ button,
|
||||
display: none;
|
||||
}
|
||||
|
||||
.xl\:static {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.xl\:fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
3547
dist/tailwind.css
vendored
3547
dist/tailwind.css
vendored
File diff suppressed because it is too large
Load Diff
2
dist/tailwind.css.map
vendored
2
dist/tailwind.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/tailwind.min.css
vendored
2
dist/tailwind.min.css
vendored
File diff suppressed because one or more lines are too long
@ -2,6 +2,7 @@ import defineClasses from '../util/defineClasses'
|
||||
|
||||
export default function() {
|
||||
return defineClasses({
|
||||
'static': { position: 'static' },
|
||||
'fixed': { position: 'fixed' },
|
||||
'absolute': { position: 'absolute' },
|
||||
'relative': { position: 'relative' },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user