* Add jobs resource. Add simple test view for sync list * Add schema to onboarding and create source * Show logs for sync history * Add jobList polling. Small ui fixes * Add log time * Fix style config * code style Co-authored-by: cgardens <giardina.charles@gmail.com>
32 lines
611 B
TypeScript
32 lines
611 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const Row = styled.div`
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
height: 32px;
|
|
position: relative;
|
|
|
|
font-size: 14px;
|
|
line-height: 17px;
|
|
font-weight: normal;
|
|
color: ${({ theme }) => theme.darkPrimaryColor};
|
|
border: none;
|
|
`;
|
|
|
|
export const Header = styled(Row)`
|
|
font-weight: 600;
|
|
color: ${({ theme }) => theme.textColor};
|
|
height: 17px;
|
|
padding: 0;
|
|
`;
|
|
|
|
export const Cell = styled.div<{ flex?: number }>`
|
|
flex: ${({ flex }) => flex || 1} 0 0;
|
|
|
|
&:last-child {
|
|
text-align: right;
|
|
}
|
|
`;
|