Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
3d452b70
Commit
3d452b70
authored
Jul 29, 2019
by
ian-jh
Browse files
Options
Browse Files
Download
Plain Diff
resolve merge conflicts
parents
d265b120
3f3889b9
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1019 additions
and
1775 deletions
+1019
-1775
index.js
src/components/ContextualInfoNew/index.js
+2
-1
index.jsx
src/components/ExchangePage/index.jsx
+722
-0
index.js
src/components/Modal/index.js
+2
-3
index.js
src/components/TransactionDetails/index.js
+284
-318
App.js
src/pages/App.js
+2
-2
index.js
src/pages/Send/index.js
+4
-781
index.js
src/pages/Swap/index.js
+3
-670
No files found.
src/components/ContextualInfoNew/index.js
View file @
3d452b70
...
@@ -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;
...
...
src/components/ExchangePage/index.jsx
0 → 100644
View file @
3d452b70
This diff is collapsed.
Click to expand it.
src/components/Modal/index.js
View file @
3d452b70
...
@@ -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;
...
...
src/components/TransactionDetails/index.js
View file @
3d452b70
This diff is collapsed.
Click to expand it.
src/pages/App.js
View file @
3d452b70
...
@@ -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
...
...
src/pages/Send/index.js
View file @
3d452b70
This diff is collapsed.
Click to expand it.
src/pages/Swap/index.js
View file @
3d452b70
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment