Skip to content
New issue

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

Not converting values from css grid properties #195

Open
assuncaocharles opened this issue May 6, 2020 · 0 comments
Open

Not converting values from css grid properties #195

assuncaocharles opened this issue May 6, 2020 · 0 comments

Comments

@assuncaocharles
Copy link

assuncaocharles commented May 6, 2020

Reproduction link
For reference: CSS Grid in IE: Debunking Common IE Grid Misconceptions

Current behavior

IE prefix for css grid are correctly added but with improper values:

{
    gridTemplateColumns: 'repeat(3, 1fr)' 
}

Generates:

{
    gridTemplateColumns: 'repeat(3, 1fr)', 
    msGridTemplateColumns: 'repeat(3, 1fr)',
}

Expected

It should convert values to work properly:

{
    gridTemplateColumns: 'repeat(3, 1fr)' 
}

Should generate

{
    gridTemplateColumns: 'repeat(3, 1fr)', 
    msGridTemplateColumns: '(1fr)[3]', //or '1fr 1fr 1fr'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant