mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 02:18:15 +01:00
Fix color of close button in call settings
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React, { useEffect } from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { createPortal } from 'react-dom';
|
||||
import FocusTrap from 'focus-trap-react';
|
||||
import type { SpringValues } from '@react-spring/web';
|
||||
@@ -76,13 +75,10 @@ export const ModalHost = React.memo(
|
||||
allowOutsideClick: false,
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
<div className={theme ? themeClassName(theme) : undefined}>
|
||||
<animated.div
|
||||
role="presentation"
|
||||
className={classNames(
|
||||
'module-modal-host__overlay',
|
||||
theme ? themeClassName(theme) : undefined
|
||||
)}
|
||||
className="module-modal-host__overlay"
|
||||
onMouseDown={noMouseClose ? undefined : handleMouseDown}
|
||||
onMouseUp={noMouseClose ? undefined : handleMouseUp}
|
||||
style={overlayStyles}
|
||||
|
||||
Reference in New Issue
Block a user