Skip to content

Commit

Permalink
fix: uppdated responsive bahaviour of data table
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund authored and olavis committed Sep 15, 2023
1 parent ad8c57a commit b0101e6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/components/Table.styled.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
import styled from 'styled-components'
import { spacings } from '../tokens/spacings'

export const StyledDiv = styled.div`
overflow-x: auto;
padding-bottom: 15px;
padding-bottom: ${spacings.MEDIUM};
> .table-wrapper {
> table {
width: auto !important;
margin: 0px !important;
}
> div {
max-width: none !important;
}
}
`

0 comments on commit b0101e6

Please sign in to comment.