4b22c0404e
* initial commit * Theme setup on twenty-website package * Left bar, Content done * Content added, useDeviceType hook added * useDeviceType file renamed * Responsiveness introduced * Mobile responsiveness fix * TOC layout * PR fixes * PR changes 2 * PR changes #3
20 lines
255 B
TypeScript
20 lines
255 B
TypeScript
import { Color } from './colors';
|
|
|
|
const common = {
|
|
radius: {
|
|
xs: '2px',
|
|
sm: '4px',
|
|
md: '8px',
|
|
xl: '20px',
|
|
pill: '999px',
|
|
rounded: '100%',
|
|
},
|
|
};
|
|
|
|
export const Border = {
|
|
color: {
|
|
plain: Color.gray60,
|
|
},
|
|
...common,
|
|
};
|