CSS
绿色按钮:
export const NewItemButton = styled.button`background-color: #5aac44;border-radius: 3px;border: none;box-shadow: none;color: #fff;padding: 6px 12px;text-align: center;`

卡片:
export const ColumnContainer = styled.div`background-color: #ebecf0;width: 300px;min-height: 40px;margin-right: 20px;border-radius: 3px;padding: 8px 8px;flex-grow: 0;`export const CardContainer = styled.div`background-color: #fff;cursor: pointer;margin-bottom: 0.5rem;padding: 0.5rem 1rem;max-width: 300px;border-radius: 3px;box-shadow: #091e4240 0px 1px 0px 0px;`

