#![doc = include_str!("README.md")]
#![doc(alias = "flexbox")]
use crate::prelude::build_plugin::*;
pub(crate) const PLUGIN: StaticPlugin = Plugin::ListValues(ListValues {
prop: SingleProp("place-items"),
values: map! {
"place-items-stretch" => "stretch",
"place-items-start" => "start",
"place-items-center" => "center",
"place-items-end" => "end",
},
..ListValues::default()
});