wix-style-react
Version:
wix-style-react
20 lines (17 loc) • 309 B
JavaScript
export const flexPositions = {
start: 'flex-start',
center: 'center',
end: 'flex-end',
};
export const colors = {
blue: 'blue',
red: 'red',
green: 'green',
};
export const positions = {
static: 'static',
relative: 'relative',
absolute: 'absolute',
fixed: 'fixed',
sticky: 'sticky',
};