Commit 3d452b70 authored by ian-jh's avatar ian-jh

resolve merge conflicts

parents d265b120 3f3889b9
...@@ -32,7 +32,8 @@ const SummaryWrapperContainer = styled.div` ...@@ -32,7 +32,8 @@ const SummaryWrapperContainer = styled.div`
const Details = styled.div` const Details = styled.div`
background-color: ${({ theme }) => theme.concreteGray}; background-color: ${({ theme }) => theme.concreteGray};
/* padding: 1.25rem 1.25rem 1rem 1.25rem; */ padding: 1.5rem;
padding-bottom: 1rem;
border-radius: 1rem; border-radius: 1rem;
font-size: 0.75rem; font-size: 0.75rem;
margin: 1rem 0.5rem 0 0.5rem; margin: 1rem 0.5rem 0 0.5rem;
......
This diff is collapsed.
...@@ -5,9 +5,8 @@ import { DialogOverlay, DialogContent } from '@reach/dialog' ...@@ -5,9 +5,8 @@ import { DialogOverlay, DialogContent } from '@reach/dialog'
import '@reach/dialog/styles.css' import '@reach/dialog/styles.css'
const AnimatedDialogOverlay = animated(DialogOverlay) const AnimatedDialogOverlay = animated(DialogOverlay)
const WrappedDialogOverlay = ({ suppressClassNameWarning, ...rest }) => <AnimatedDialogOverlay {...rest} /> const StyledDialogOverlay = styled(AnimatedDialogOverlay).attrs({
const StyledDialogOverlay = styled(WrappedDialogOverlay).attrs({ suppressclassnamewarning: 'true'
suppressClassNameWarning: true
})` })`
&[data-reach-dialog-overlay] { &[data-reach-dialog-overlay] {
z-index: 2; z-index: 2;
......
This diff is collapsed.
...@@ -46,7 +46,7 @@ export default function App() { ...@@ -46,7 +46,7 @@ export default function App() {
{/* this Suspense is for route code-splitting */} {/* this Suspense is for route code-splitting */}
<Suspense fallback={null}> <Suspense fallback={null}>
<Switch> <Switch>
<Route exact strict path="/swap" component={Swap} /> <Route exact strict path="/swap" component={() => <Swap />} />
<Route <Route
exact exact
strict strict
...@@ -59,7 +59,7 @@ export default function App() { ...@@ -59,7 +59,7 @@ export default function App() {
} }
}} }}
/> />
<Route exact strict path="/send" component={Send} /> <Route exact strict path="/send" component={() => <Send />} />
<Route <Route
exact exact
strict strict
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment