Skip to content

Parenthesis problem #114

Open
Open
@Mangatt

Description

@Mangatt

When using rgba fallbacks for CSS variables, output is wrong:

:root{
    --color: rgba(0,0,0,0.5);
}
p{
    color: var(--color, rgba(0,0,0,0.5));
}

is transformed into (notice two parentheses on the right):

p{
    color: rgba(0,0,0,0.5));
}

Any way around that?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions