mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Add clear-none
This commit is contained in:
parent
af36c6849e
commit
3c20ae8ebf
@ -3674,6 +3674,10 @@ video {
|
||||
clear: both !important;
|
||||
}
|
||||
|
||||
.clear-none {
|
||||
clear: none !important;
|
||||
}
|
||||
|
||||
.font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||||
}
|
||||
@ -13979,6 +13983,10 @@ video {
|
||||
clear: both !important;
|
||||
}
|
||||
|
||||
.sm\:clear-none {
|
||||
clear: none !important;
|
||||
}
|
||||
|
||||
.sm\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||||
}
|
||||
@ -24285,6 +24293,10 @@ video {
|
||||
clear: both !important;
|
||||
}
|
||||
|
||||
.md\:clear-none {
|
||||
clear: none !important;
|
||||
}
|
||||
|
||||
.md\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||||
}
|
||||
@ -34591,6 +34603,10 @@ video {
|
||||
clear: both !important;
|
||||
}
|
||||
|
||||
.lg\:clear-none {
|
||||
clear: none !important;
|
||||
}
|
||||
|
||||
.lg\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||||
}
|
||||
@ -44897,6 +44913,10 @@ video {
|
||||
clear: both !important;
|
||||
}
|
||||
|
||||
.xl\:clear-none {
|
||||
clear: none !important;
|
||||
}
|
||||
|
||||
.xl\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
||||
}
|
||||
|
||||
@ -3674,6 +3674,10 @@ video {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.clear-none {
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
@ -13979,6 +13983,10 @@ video {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.sm\:clear-none {
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.sm\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
@ -24285,6 +24293,10 @@ video {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.md\:clear-none {
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.md\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
@ -34591,6 +34603,10 @@ video {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.lg\:clear-none {
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.lg\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
@ -44897,6 +44913,10 @@ video {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.xl\:clear-none {
|
||||
clear: none;
|
||||
}
|
||||
|
||||
.xl\:font-sans {
|
||||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
|
||||
@ -5,6 +5,7 @@ export default function() {
|
||||
'.clear-left': { clear: 'left' },
|
||||
'.clear-right': { clear: 'right' },
|
||||
'.clear-both': { clear: 'both' },
|
||||
'.clear-none': { clear: 'none' },
|
||||
},
|
||||
variants('clear')
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user