diff --git a/src/react/components/modal/index.tsx b/src/react/components/modal/index.tsx index 3c12446..4830c36 100644 --- a/src/react/components/modal/index.tsx +++ b/src/react/components/modal/index.tsx @@ -1,5 +1,14 @@ import React from 'react'; -import { Modal as BlockstackModal, ThemeProvider, theme, CSSReset, Flex, Box, Text, ChevronIcon } from '@blockstack/ui'; +import { + Modal as BlockstackModal, + ThemeProvider, + theme, + ScopedCSSReset, + Flex, + Box, + Text, + ChevronIcon, +} from '@blockstack/ui'; import { useHover } from 'use-events'; import { Logo } from '../logo'; import { Intro } from '../screens/intro'; @@ -105,21 +114,22 @@ export const Modal = () => { return ( - - - } - close={doCloseAuth} - isOpen={isOpen} - > - - + + + } + close={doCloseAuth} + isOpen={isOpen} + > + + + ); };