Enable deletion on table views (#113)

* Enable deletion on table views

* Add tests

* Enable deletion on table views for companies too
This commit is contained in:
Charles Bochet
2023-05-08 23:26:37 +02:00
committed by GitHub
parent 94ea9835a9
commit 2212900663
12 changed files with 291 additions and 57 deletions

View File

@ -18,6 +18,7 @@ const StyledContainer = styled.div`
const ContentContainer = styled.div`
display: flex;
position: relative;
flex-direction: column;
background: ${(props) => props.theme.noisyBackground};
flex: 1;

View File

@ -44,6 +44,7 @@ const lightThemeSpecific = {
green: '#1e7e50',
purple: '#1111b7',
yellow: '#cc660a',
red: '#ff2e3f',
blueHighTransparency: 'rgba(25, 97, 237, 0.03)',
blueLowTransparency: 'rgba(25, 97, 237, 0.32)',
@ -76,6 +77,7 @@ const darkThemeSpecific: typeof lightThemeSpecific = {
green: '#e6fff2',
purple: '#e0e0ff',
yellow: '#fff2e7',
red: '#ff2e3f',
blueHighTransparency: 'rgba(104, 149, 236, 0.03)',
blueLowTransparency: 'rgba(104, 149, 236, 0.32)',