Add optimistic rendering on right drawer title (#786)

* Add optimistic rendering on right drawer title

* Fix

* Fix

* Fix

* Fix

* Fix

* Fix
This commit is contained in:
Charles Bochet
2023-07-20 23:58:21 -07:00
committed by GitHub
parent e65c7ee6fe
commit 79fccb0404
4 changed files with 31 additions and 18 deletions

View File

@ -22,7 +22,7 @@ const StyledTable = styled.table`
width: calc(100% - ${({ theme }) => theme.table.horizontalCellMargin} * 2);
th {
border: 1px solid ${({ theme }) => theme.background.tertiary};
border: 1px solid ${({ theme }) => theme.border.color.light};
border-collapse: collapse;
color: ${({ theme }) => theme.font.color.tertiary};
padding: 0;
@ -42,7 +42,7 @@ const StyledTable = styled.table`
}
td {
border: 1px solid ${({ theme }) => theme.background.tertiary};
border: 1px solid ${({ theme }) => theme.border.color.light};
border-collapse: collapse;
color: ${({ theme }) => theme.font.color.primary};
padding: 0;