fix(alerts): cron picker alignment issues (#22274)

This commit is contained in:
Diego Medina 2022-12-02 18:20:38 -03:00 committed by GitHub
parent 8018982e7b
commit 09bb1cc3b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -122,4 +122,10 @@ export const CronPicker = styled((props: CronProps) => (
.react-js-cron-custom-select > div:first-of-type {
border-radius: ${({ theme }) => theme.gridUnit}px;
}
.react-js-cron-custom-select .ant-select-selection-placeholder {
flex: auto;
}
.react-js-cron-custom-select .ant-select-selection-overflow-item {
align-self: center;
}
`;