Skip to content
This repository was archived by the owner on Jun 18, 2023. It is now read-only.
This repository was archived by the owner on Jun 18, 2023. It is now read-only.

Neccessary whitespace in @supports removed #71

@SassCoder

Description

@SassCoder

Why is issue #52 closed?

Minification and Optimization removes neccessary whitespace after or.

// CSS
@supports ((position: -webkit-sticky) or (position: sticky)) {
	.element {
		position : -webkit-sticky
		position : sticky;
	}
}

// Result
@supports((position:-webkit-sticky) or(position:sticky)){.element{position:-webkit-sticky;position:sticky}}

Without this whitespace, the @support rule is broken and is not interpreted by the browser.

Best Regards

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions