diff --git a/packages/web/components/elements/ModalPrimitives.tsx b/packages/web/components/elements/ModalPrimitives.tsx index 876104de3..33006fc8b 100644 --- a/packages/web/components/elements/ModalPrimitives.tsx +++ b/packages/web/components/elements/ModalPrimitives.tsx @@ -34,6 +34,7 @@ const Modal = styled(Content, { boxShadow: theme.shadows.cardBoxShadow.toString(), position: 'fixed', '&:focus': { outline: 'none' }, + zIndex:'1', }) export const ModalContent = styled(Modal, { diff --git a/packages/web/components/elements/Table.tsx b/packages/web/components/elements/Table.tsx index ccc117b79..e8f9b582c 100644 --- a/packages/web/components/elements/Table.tsx +++ b/packages/web/components/elements/Table.tsx @@ -8,6 +8,7 @@ import { InfoLink } from './InfoLink' import { Button } from './Button' import 'react-super-responsive-table/dist/SuperResponsiveTableStyle.css' import { IconButton } from './Button' + interface TableProps { heading: string infoLink?: string @@ -25,7 +26,11 @@ const HeaderWrapper = styled(Box, { }, }) -export function TableR(props: TableProps): JSX.Element { +const newThead = { + background: '#156' +} + +export function TableNew(props: TableProps): JSX.Element { const iconColor = isDarkTheme() ? '#D8D7D5' : '#5F5E58' return ( @@ -98,26 +103,27 @@ export function TableR(props: TableProps): JSX.Element { }} >
|
- |
- ))}
- |
|---|---|
|
+ |
+ ))}
+ |
|
| |