mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-03-20 17:04:06 -04:00
15 lines
220 B
CSS
15 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;
|
|
}
|
|
}
|