fix: dont show item list "hover" indicator on mobile

This commit is contained in:
Aman Harwara
2022-10-24 14:06:02 +05:30
parent 337ae6009e
commit 4181d7ff2c

View File

@@ -112,11 +112,16 @@
}
.content-list-item {
&.selected,
&:hover {
&.selected {
background-color: var(--item-cell-selected-background-color);
}
@media screen and (hover: hover) {
&:hover {
background-color: var(--item-cell-selected-background-color);
}
}
ul {
list-style: disc;
}