Fix maker order tab alignment, fix typo on info text

This commit is contained in:
Reckless_Satoshi 2022-03-24 06:53:11 -07:00
parent 5ee28f9564
commit 93da75607c
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
3 changed files with 9 additions and 9 deletions

View File

@ -38,7 +38,7 @@ export default class InfoDialog extends Component {
<Typography component="h4" variant="h4">What is <i>RoboSats</i>?</Typography> <Typography component="h4" variant="h4">What is <i>RoboSats</i>?</Typography>
<Typography component="body2" variant="body2"> <Typography component="body2" variant="body2">
<p>It is a BTC/FIAT peer-to-peer exchange over lightning. It simplifies <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 <img
width='100%' width='100%'
src={window.location.origin +'/static/assets/images/robosats_0.1.0_banner.png'} 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, received the fiat, then the satoshis are released to Bob. Enjoy your satoshis,
Bob!</p> 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 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 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> 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>

View File

@ -621,12 +621,12 @@ export default class MakerPage extends Component {
setValue(newValue); setValue(newValue);
}; };
return( return(
<Box sx={{ width: this.state.showAdvanced? '275px':'252px'}}> <Box sx={{width: this.state.showAdvanced? '270px':'252px'}}>
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}> <Box sx={{ borderBottom: 1, borderColor: 'divider', position:'relative',left:'5px'}}>
<Tabs value={value? value:0} onChange={handleChange} variant="fullWidth" > <Tabs value={value? value:0} onChange={handleChange} variant="fullWidth" >
<Tab label="Basic" {...this.a11yProps(0)} /> <Tab label="Basic" {...this.a11yProps(0)} />
<Tab label="Advanced" {...this.a11yProps(1)} /> <Tab label="Advanced" {...this.a11yProps(1)} />
</Tabs> </Tabs>
</Box> </Box>
<Grid item xs={12} align="center" spacing={1}> <Grid item xs={12} align="center" spacing={1}>

File diff suppressed because one or more lines are too long