#Borders

import { flexSystem } from "@poodle/system";

flex system support CSS Flexbox.

const listSystem = compose(flexSystem);
export const system = createSystem(listSystem);
const styles = system({
alignItems: "flex-start",
justifySelf: "center",
});
// Styles result
// { alignItems: "flex-start" },
// { justifySelf: "center" },
PropTypeDescription
alignContentResponsiveProp<CSS.Property.AlignContent>The CSS align-content property
alignItemsResponsiveProp<CSS.Property.AlignItems>The CSS align-items property
alignSelfResponsiveProp<CSS.Property.AlignSelf>The CSS align-self property
flexResponsiveProp<CSS.Property.Flex>The CSS flex property
flexBasisResponsiveProp<CSS.Property.FlexBasis \| number \| string>The CSS flex-basis property
flexDirResponsiveProp<CSS.Property.FlexDirection>The CSS flex-direction property
flexDirectionResponsiveProp<CSS.Property.FlexDirection>The CSS flex-direction property
flexGrowResponsiveProp<CSS.Property.FlexGrow>The CSS flex-grow property
flexShrinkResponsiveProp<CSS.Property.FlexShrink>The CSS flex-shrink property
flexWrapResponsiveProp<CSS.Property.FlexWrap>The CSS flex-wrap property
justifyContentResponsiveProp<CSS.Property.JustifyContent>The CSS justify-content property
justifyItemsResponsiveProp<CSS.Property.JustifyItems>The CSS justify-items property
justifySelfResponsiveProp<CSS.Property.JustifySelf>The CSS justify-self property
orderResponsiveProp<CSS.Property.Order>The CSS order property