Skip to content

Commit

Permalink
fix(explore): add padding to the adhoc filter value select (apache#14679
Browse files Browse the repository at this point in the history
)
  • Loading branch information
suddjian authored and cccs-RyanS committed Dec 17, 2021
1 parent d13253f commit d9b5afa
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -41,6 +41,10 @@ import AdhocFilter, {
import columnType from 'src/explore/components/controls/FilterControl/columnType';

const SelectWithLabel = styled(Select)`
.ant-select-selector {
margin-bottom: ${({ theme }) => theme.gridUnit * 4}px;
}
.ant-select-selector::after {
content: '${({ labelText }) => labelText || '\\A0'}';
display: inline-block;
Expand Down

0 comments on commit d9b5afa

Please sign in to comment.