You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Components/Filter/Builder/FilterBuilderRow.css

33 lines
440 B

.filterRow {
display: flex;
margin-bottom: 5px;
&:hover {
background-color: $tableRowHoverBackgroundColor;
}
}
.inputContainer {
flex: 0 1 200px;
margin-right: 10px;
}
.valueInputContainer {
flex: 0 1 300px;
margin-right: 10px;
}
.actionsContainer {
display: flex;
}
@media only screen and (max-width: $breakpointSmall) {
.filterRow {
display: block;
}
.inputContainer {
margin-bottom: 10px;
}
}