mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-14 19:51:56 +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;
|
|
}
|
|
}
|