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

Extend separate_groups options in PropertySortOrder #1005

Open
bahurr opened this issue Mar 21, 2023 · 0 comments
Open

Extend separate_groups options in PropertySortOrder #1005

bahurr opened this issue Mar 21, 2023 · 0 comments

Comments

@bahurr
Copy link

bahurr commented Mar 21, 2023

If separate_groups is set to true and I have many groups defined in the order configuration, and some CSS selector has many single rules from each of the groups, it gives not the best looking result:

.item {
  position: relative;

  display: block;

  font-size: 1.2rem;

  color: #fff;

  cursor: pointer;
}

It would be great to have an option to suppress separation for one-liners and let them group with the other ones next to them:

.item {
  position: relative;
  display: block;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}
.item {
  position: absolute;
  left: 50%;

  display: block;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}
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