Make query tab delete buttons scale with everything else

They looked mad tiny on big screens
pull/1081/head
Alex P 2017-03-30 16:52:57 -07:00 committed by Andrew Watkins
parent 1ba8b99014
commit 4de5c55b63
1 changed files with 18 additions and 0 deletions

View File

@ -45,6 +45,15 @@ $breakpoint-c: 2100px;
.btn-xs {
font-size: 13.5px;
}
.query-builder--tab-delete {
width: 20px;
height: 20px;
&:before,
&:after {
width: 10px;
}
}
}
}
@media only screen and (min-width: $breakpoint-c) {
@ -78,5 +87,14 @@ $breakpoint-c: 2100px;
.multi-select-dropdown .dropdown-toggle {
width: 140px;
}
.query-builder--tab-delete {
width: 22px;
height: 22px;
&:before,
&:after {
width: 12px;
}
}
}
}