Prevent text selection on table rows

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

View File

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