Skip to content

Commit

Permalink
Fix provably fair tool
Browse files Browse the repository at this point in the history
  • Loading branch information
bone-house committed Sep 1, 2023
1 parent 654f47f commit 813006d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/provably-fair/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ body {
color: white;
margin: 0;
padding: 20px;
/* display: flex;
display: flex;
justify-content: center;
align-items: center; */
align-items: center;
}

body, input, textarea, button {
Expand Down
3 changes: 2 additions & 1 deletion apps/provably-fair/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React from 'react'
import ReactDOM from 'react-dom/client'
import { BrowserRouter, Route, Routes, useParams } from 'react-router-dom'
import './index.css'
import { Legacy } from './Legacy'

const root = ReactDOM.createRoot(document.getElementById('root')!)

Expand Down Expand Up @@ -45,7 +46,7 @@ function App() {
<Routes>
<Route
path="/"
element={<Dashboard />}
element={<Legacy />}
/>
<Route
path="/tx/:txid"
Expand Down

0 comments on commit 813006d

Please sign in to comment.