feat: add remote object integration databases list card (#4621)
* feat: add remote object integration databases list card Closes #4549 * fix: fixes after rebase
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
import { css } from '@emotion/react';
|
||||
import styled from '@emotion/styled';
|
||||
|
||||
const StyledCardFooter = styled.div`
|
||||
const StyledCardFooter = styled.div<{ divider?: boolean }>`
|
||||
background-color: ${({ theme }) => theme.background.primary};
|
||||
border-top: 1px solid ${({ theme }) => theme.border.color.medium};
|
||||
border-top: ${({ divider = true, theme }) =>
|
||||
divider ? css`1px solid ${theme.border.color.medium}` : 0};
|
||||
font-size: ${({ theme }) => theme.font.size.sm};
|
||||
padding: ${({ theme }) => theme.spacing(2, 4)};
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user