Skip to content

Commit

Permalink
fix: Safari rendering issues with Sortable Table th
Browse files Browse the repository at this point in the history
  • Loading branch information
stalgiag committed Nov 7, 2024
1 parent cdd212d commit 2615365
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions client/components/common/SortableTableHeader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ const SortableTableHeaderButton = styled(Button)`
border-radius: 0;
margin: 0;
// Force the button to stretch
position: relative;
height: stretch;
height: -webkit-fill-available;
height: -moz-available;
height: 100%;
min-height: 100%;
flex: 1 1 auto;
display: flex;
align-items: flex-end;
justify-content: space-between;
&:hover,
&:focus {
Expand Down

0 comments on commit 2615365

Please sign in to comment.