fix: Two-factor activation modal (#736)
This commit is contained in:
@@ -31,7 +31,7 @@ export const ModalDialogLabel: FunctionComponent<{
|
|||||||
closeDialog: () => void;
|
closeDialog: () => void;
|
||||||
className?: string;
|
className?: string;
|
||||||
}> = ({ children, closeDialog, className }) => (
|
}> = ({ children, closeDialog, className }) => (
|
||||||
<AlertDialogLabel className={className}>
|
<AlertDialogLabel className={`sk-panel-header px-4.5 ${className}`}>
|
||||||
<div className="w-full flex flex-row justify-between items-center">
|
<div className="w-full flex flex-row justify-between items-center">
|
||||||
<div className="flex-grow color-text text-base font-medium">
|
<div className="flex-grow color-text text-base font-medium">
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -154,10 +154,7 @@ export const ChangeEmail: FunctionalComponent<Props> = ({
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<ModalDialog>
|
<ModalDialog>
|
||||||
<ModalDialogLabel
|
<ModalDialogLabel closeDialog={handleDialogClose}>
|
||||||
closeDialog={handleDialogClose}
|
|
||||||
className="sk-panel-header px-4.5"
|
|
||||||
>
|
|
||||||
Change Email
|
Change Email
|
||||||
</ModalDialogLabel>
|
</ModalDialogLabel>
|
||||||
<ModalDialogDescription className="px-4.5">
|
<ModalDialogDescription className="px-4.5">
|
||||||
|
|||||||
Reference in New Issue
Block a user