mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
Fix maker order tab alignment, fix typo on info text
This commit is contained in:
parent
5ee28f9564
commit
93da75607c
@ -38,7 +38,7 @@ export default class InfoDialog extends Component {
|
||||
<Typography component="h4" variant="h4">What is <i>RoboSats</i>?</Typography>
|
||||
<Typography component="body2" variant="body2">
|
||||
<p>It is a BTC/FIAT peer-to-peer exchange over lightning. It simplifies
|
||||
matchmaking and minimizes the need for entrust. RoboSats focuses in privacy and speed.</p>
|
||||
matchmaking and minimizes the need for trust. RoboSats focuses in privacy and speed.</p>
|
||||
<img
|
||||
width='100%'
|
||||
src={window.location.origin +'/static/assets/images/robosats_0.1.0_banner.png'}
|
||||
@ -59,7 +59,7 @@ export default class InfoDialog extends Component {
|
||||
received the fiat, then the satoshis are released to Bob. Enjoy your satoshis,
|
||||
Bob!</p>
|
||||
|
||||
<p>At no point, AnonymousAlice01 and BafflingBob02 have to trust the
|
||||
<p>At no point, AnonymousAlice01 and BafflingBob02 have to entrust the
|
||||
bitcoin funds to each other. In case they have a conflict, <i>RoboSats</i> staff
|
||||
will help resolving the dispute. You can find a step-by-step
|
||||
description of the trade pipeline in <Link href='https://github.com/Reckless-Satoshi/robosats/blob/main/README.md#how-it-works'>How it works</Link>
|
||||
|
@ -621,12 +621,12 @@ export default class MakerPage extends Component {
|
||||
setValue(newValue);
|
||||
};
|
||||
return(
|
||||
<Box sx={{ width: this.state.showAdvanced? '275px':'252px'}}>
|
||||
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
|
||||
<Tabs value={value? value:0} onChange={handleChange} variant="fullWidth" >
|
||||
<Tab label="Basic" {...this.a11yProps(0)} />
|
||||
<Tab label="Advanced" {...this.a11yProps(1)} />
|
||||
</Tabs>
|
||||
<Box sx={{width: this.state.showAdvanced? '270px':'252px'}}>
|
||||
<Box sx={{ borderBottom: 1, borderColor: 'divider', position:'relative',left:'5px'}}>
|
||||
<Tabs value={value? value:0} onChange={handleChange} variant="fullWidth" >
|
||||
<Tab label="Basic" {...this.a11yProps(0)} />
|
||||
<Tab label="Advanced" {...this.a11yProps(1)} />
|
||||
</Tabs>
|
||||
</Box>
|
||||
|
||||
<Grid item xs={12} align="center" spacing={1}>
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user