Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/packages/core/src/ui/MetadataTable.tsx
Show All 38 Lines | return ( | ||||
</StyledTable> | </StyledTable> | ||||
); | ); | ||||
}; | }; | ||||
MetadataTable.defaultProps = { | MetadataTable.defaultProps = { | ||||
spacing: 4, | spacing: 4, | ||||
}; | }; | ||||
const StyledTable = styled.table` | export const StyledTable = styled.table` | ||||
border-spacing: 0; | border-spacing: 0; | ||||
td { | td { | ||||
vertical-align: top; | vertical-align: top; | ||||
} | } | ||||
td .bp3-control { | td .bp3-control { | ||||
margin-bottom: 0; | margin-bottom: 0; | ||||
} | } | ||||
`; | `; | ||||
const MetadataKey = styled.div` | const MetadataKey = styled.div` | ||||
color: ${Colors.GRAY1}; | color: ${Colors.GRAY1}; | ||||
font-weight: 400; | font-weight: 400; | ||||
`; | `; |