1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/dataline-webapp/src/components/SimpleTableComponents/SimpleTableComponents.tsx
Artem Astapenko be1fc793db Add missing ui parts (#257)
* 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>
2020-09-15 18:56:49 +03:00

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;
}
`;