Skip to content

Commit

Permalink
Update table.css (#1770)
Browse files Browse the repository at this point in the history
'position: sticky' should be listed after 'position: -webkit-sticky'
![img](https://i.imgur.com/rUz0Dj0.png)
  • Loading branch information
efehidir committed Apr 24, 2023
1 parent 37bca23 commit 52a5162
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/unstyled/table.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.table {
@apply relative;
th:first-child {
@apply sticky left-0 z-[11];
/* because safari */
position: -webkit-sticky;

@apply sticky left-0 z-[11];
}
}

0 comments on commit 52a5162

Please sign in to comment.