Files
Prowlarr/frontend/src/Components/Table/VirtualTableRow.css
2022-05-14 21:54:44 -05:00

15 lines
248 B
CSS

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