Add position static utilitiy

This commit is contained in:
Adam Wathan 2017-10-27 15:28:23 -04:00
parent eccf6ed083
commit bf3145277f
5 changed files with 2754 additions and 818 deletions

View File

@ -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

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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' },