Support `flex-basis: fill-available(stretch)`

Author: yisiblCreated Jul 17, 2024Updated Oct 21, 2024

TODO

Input

.foo {
   flex-basis: stretch;
}

Expected

Note: Chrome does not implement flex-basis: -webkit-fill-available!

.example {
   flex-basis: -webkit-fill-available; /* Safari */
   flex-basis: -moz-available;
   flex-basis: stretch;
}