mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-22 22:16:13 -04:00
2291f3e00e
Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com>
15 lines
248 B
CSS
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;
|
|
}
|
|
}
|