We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The idea is to:
margin: "15"
rgb(0, 0, 0)
#000
We'll start with properties that are error prone and syntactically complex
calc()
margin
padding
@media
Two options
validate(property, value) => normalize(property, value) =>
OR
normalizeColor('rgb(255, 0, 127)' ) => { color: '#ff007f' } validateMargin('15') // throws (missing unit) normalizeMediaQuery('@media (width >= 768px and width <= 1024px)') => '@media (min-width: 768px) and (max-width: 1024px)' normalizeMediaQuery('@media not (not ((min-width: 600px) and (color)))') => '@media (min-width: 600px) and (color)' validateMediaQuery('@media (min-width: var(--x))') // unsupported
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Describe the feature request
Proposal
The idea is to:
margin: "15"
with no unit)rgb(0, 0, 0)
→#000
)We'll start with properties that are error prone and syntactically complex
calc()
expressionsmargin
,padding
, etc.)@media
queriesUsage
Two options
OR
The text was updated successfully, but these errors were encountered: