mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-27 18:53:27 +01:00
14 lines
220 B
CSS
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;
|
|
}
|
|
}
|