halfmoonui / halfmoon

Halfmoon is a highly customizable, drop-in Bootstrap replacement. It comes with three built-in core themes, with dark mode support for all themes and components.
https://www.gethalfmoon.com
MIT License
3.03k stars 118 forks source link

Add flex-box utility class for justify-content: space-evenly #67

Closed mansguiche closed 1 year ago

mansguiche commented 3 years ago

There are classes for all the possible values of flex box's justify-content property except for the value space-evenly.

proposed solution:

.justify-content-evenly {
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

and the relevant equivalents for the various break point media queries.

Supernova3339 commented 1 year ago

apparantly