Prevent text selection on table rows

This commit is contained in:
Michael Shamoon 2021-01-15 16:13:22 -08:00
parent dad76d770f
commit b58e12319f

View File

@ -1,5 +1,9 @@
@import "/src/theme";
tr {
user-select: none;
}
.table-row-selected {
background-color: $primaryFaded;
}