Skip to content

Commit

Permalink
Reduce the height of the slots and make the tracks fill the full width
Browse files Browse the repository at this point in the history
  • Loading branch information
dhenneke committed Sep 26, 2023
1 parent d66f98a commit fa9aac6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/SessionGrid/SessionGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ const TableContainer = styled.table<{
canDropSession,
theme,
}) => ({
width: '100%',
borderSpacing: 0,
background: canDropSession
? `repeating-linear-gradient(45deg, ${theme.pageBackground}, ${theme.pageBackground} 10px, transparent 10px, transparent 20px)`
Expand All @@ -88,8 +89,8 @@ const TableContainer = styled.table<{
'td.session': {
minWidth: 200,
width: `${100 / trackCount}%`,
minHeight: 200,
height: 200,
minHeight: 115,
height: 115,
},

// set the default borders, padding, and alignment for all cells
Expand Down

0 comments on commit fa9aac6

Please sign in to comment.