tailwind #9

Manually merged
peperunas merged 157 commits from tailwind into master 2020-12-28 18:38:52 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 60db4f93e0 - Show all commits

View File

@ -81,7 +81,7 @@ class App extends Component<{}, AppState> {
<Navbar bg="light" expand="lg" className="border-bottom">
<Navbar.Brand href="#" className={"mr-auto"}>Rustico - BfxBot</Navbar.Brand>
<CurrencyDropdown active_pair={"BTC/USD"} pairs={["BTC/USD", "XMR/USD"]}/>
<CurrencyDropdown active_pair={{base: "BTC", quote: "USD"}} pairs={[{base: "XMR", quote: "USD"}]}/>
</Navbar>
<Container fluid className="mt-2 border flex-fill d-flex">

View File

@ -32,3 +32,8 @@ export type PositionCloseMessage = {
position_id: number,
}
export type CurrencyPair = {
base: string,
quote: string
}