Fix padding on condition operator dropdown on small screens

This commit is contained in:
JonnyWong16 2022-11-07 12:05:04 -08:00
parent a3ad40122d
commit 7c8cea74e4
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
2 changed files with 18 additions and 8 deletions

View file

@ -122,6 +122,16 @@ select.form-control {
#condition-widget .fa-minus { #condition-widget .fa-minus {
cursor: pointer; cursor: pointer;
} }
#condition-widget .condition-operator-col {
padding-left: 0;
padding-right: 0;
}
@media (max-width: 767px) {
#condition-widget .condition-operator-col {
padding-left: 15px;
padding-right: 15px;
}
}
.react-selectize.root-node .react-selectize-control .react-selectize-placeholder { .react-selectize.root-node .react-selectize-control .react-selectize-placeholder {
color: #eee !important; color: #eee !important;
} }

File diff suppressed because one or more lines are too long