Prowlarr/frontend/src/Components/Table/VirtualTableRow.css
2019-06-11 22:06:43 -04:00

14 lines
220 B
CSS

.row {
display: flex;
transition: background-color 500ms;
&:hover {
background-color: #fafbfc;
}
}
@media only screen and (max-width: $breakpointMedium) {
.row {
overflow-x: visible !important;
}
}