fix(explore): add padding to the adhoc filter value select (#14679)

This commit is contained in:
David Aaron Suddjian 2021-05-19 14:08:41 -07:00 committed by GitHub
parent 152b0d0575
commit 26c0b30ec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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;