Lidarr/frontend/src/Components/Table/VirtualTableRow.css
2017-09-05 23:00:26 -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;
}
}