Skip to content

Commit

Permalink
fix(tables): very minor fix on th hover (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderantoniadis authored Nov 1, 2023
1 parent 7cbd324 commit d10b12c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/Table/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ export const tableContainer = ({ table }: Theme) => css`
border-bottom: 1px solid ${table.borderBottomColor};
background-color: ${table.rowBackgroundColor};
&:hover {
.sorting-icon {
visibility: visible !important;
}
}
tr {
height: 54px;
white-space: nowrap;
Expand Down Expand Up @@ -51,6 +46,12 @@ export const tableContainer = ({ table }: Theme) => css`
position: relative;
cursor: pointer;
&:hover {
.sorting-icon {
visibility: visible !important;
}
}
.sorting-icon {
&.is-default-sort {
visibility: visible;
Expand Down

0 comments on commit d10b12c

Please sign in to comment.