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

No padding between css variables and other properties #176

Open
1 task done
nikkeyl opened this issue May 16, 2024 · 0 comments
Open
1 task done

No padding between css variables and other properties #176

nikkeyl opened this issue May 16, 2024 · 0 comments
Assignees
Labels
type: bug A defect in the code that causes unexpected behavior

Comments

@nikkeyl
Copy link
Member

nikkeyl commented May 16, 2024

What Steps are Needed to Reproduce the Bug?

  1. Remove an empty line between a variable and a property
  2. Run Stylelint

What Did You Expect to Happen?

Before Stylelint:

.class {
  --variable: 0;
  color: #fff;
}

After Stylelint:

.class {
  --variable: 0;

  color: #fff;
}

What Actually Happened?

Before Stylelint:

.class {
  --variable: 0;
  color: #fff;
}

After Stylelint:

.class {
  --variable: 0;
  color: #fff;
}

Code of Conduct

  • I Agree to Follow This Project's Code of Conduct
@nikkeyl nikkeyl added the type: bug A defect in the code that causes unexpected behavior label May 16, 2024
@nikkeyl nikkeyl self-assigned this May 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug A defect in the code that causes unexpected behavior
Projects
Status: In Progress
Development

No branches or pull requests

1 participant