diff --git a/src/renderer/components/notification-comp.tsx b/src/renderer/components/notification-comp.tsx index 6c172579..ca637395 100644 --- a/src/renderer/components/notification-comp.tsx +++ b/src/renderer/components/notification-comp.tsx @@ -41,8 +41,8 @@ type mouseEventButton = type keyboardEvent = React.KeyboardEvent; // Notification container height -const CONTAINER_HEIGHT = 100; -const CONTAINER_HEIGHT_WITH_INPUT = 132; +const CONTAINER_HEIGHT = 88; +const CONTAINER_HEIGHT_WITH_INPUT = 120; export default class NotificationComp extends React.Component<{}, IState> { private readonly eventHandlers = { @@ -137,11 +137,17 @@ export default class NotificationComp extends React.Component<{}, IState> { const containerClass = classNames('container', { 'external-border': isExternal, }); + const actionButtonContainer = classNames('rte-button-container', { + 'action-container-margin': !isInputHidden, + }); return (
{
{ ref={this.input} />
-
+