mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[RAM] Fix Delete Schedule button padding issue (#154503)
## Summary Closes #152398 Fixes the bug with the `Delete schedule` button losing its padding when a date value goes invalid
This commit is contained in:
parent
04f1be1edd
commit
a0d754c595
1 changed files with 10 additions and 1 deletions
|
@ -362,7 +362,16 @@ const RuleSnoozeSchedulerPanel: React.FunctionComponent<PanelOpts> = ({
|
|||
{(initialSchedule || showDelete) && (
|
||||
<>
|
||||
{!inPopover && <EuiSpacer size="s" />}
|
||||
<EuiPopoverFooter>
|
||||
<EuiPopoverFooter
|
||||
paddingSize="m"
|
||||
style={
|
||||
/* FIXME https://github.com/elastic/eui/issues/6695 */
|
||||
{
|
||||
marginBlock: '16px -16px',
|
||||
marginInline: '-16px',
|
||||
}
|
||||
}
|
||||
>
|
||||
{!inPopover && <EuiSpacer size="s" />}
|
||||
<EuiFlexGroup>
|
||||
<EuiFlexItem grow>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue