I am trying to use justify-content: space-evenly; in my CSS, but Atom shows space-evenly as greyed out like it is invalid. This is the relevant code:
  @media only screen and (max-width: 900px) and (min-width: 768px) {
    .plan-panel {
      -ms-justify-content: space-evenly;
      -webkit-justify-content: space-evenly;
      -moz-justify-content: space-evenly;
      justify-content: space-evenly; } }
And this is a pic of what I see in Atom
I found this at MDN web docs:
The alignment is done after the lengths and auto margins are applied, meaning that, if in a Flexbox layout there is at least one flexible element, with flex-grow different from 0, it will have no effect as there won't be any available space.
But, I am not using the flex-grow property.
Does anyone have a suggestion for why Atom wont play nice with this property/ value combination?
