CSS modules were used as a first test for performance optimization. We later found out that Linaria was a better tradeoff. This PR removes what was implemented in CSS modules and also the CSS theme file that was created that was overlapping with the TS theme files.
11 lines
152 B
TypeScript
11 lines
152 B
TypeScript
export const BORDER_COMMON = {
|
|
radius: {
|
|
xs: '2px',
|
|
sm: '4px',
|
|
md: '8px',
|
|
xl: '20px',
|
|
pill: '999px',
|
|
rounded: '100%',
|
|
},
|
|
};
|