Skip to content

Commit

Permalink
beautifying
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer0-bit committed Aug 15, 2023
1 parent 2ceb872 commit fc05a85
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,21 @@ function PzCalibrationDialog({
},
}}
>
<DialogTitle>Pump Zero Calibration</DialogTitle>
<DialogTitle style={{ textAlign: 'center', fontSize: '1.5rem', fontWeight: 'bold', padding: '20px' }}>
Pump Zero Calibration
</DialogTitle>
<DialogContent>
<Box display="flex" gap={5} alignItems="center" mt={1}>
<Typography variant="body1">
Pump Zero calibration is manual for the time being.
<br />
For calibration check
For calibration instructions check
{' '}
<a href="https://discord.gg/eJTDJA3xfh" style={{ color: 'Orange' }}>Discord</a>
.
<br />
<br />
Pump Zero is an important parameter to tune correctly, as it`&apos;`s directly responsible for
Pump Zero is an important parameter to tune correctly, as it&apos;s directly responsible for
any and all flow-related calculations, as well as for accurately calculating any predictive scales output.
<br />
<br />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ function ScalesCalibrationDialog({
},
}}
>
<DialogTitle>Scales Calibration</DialogTitle>
<DialogTitle style={{ textAlign: 'center', fontSize: '1.5rem', fontWeight: 'bold', padding: '20px' }}>
Scales Calibration
</DialogTitle>
<DialogContent>
<Box display="flex" gap={5} alignItems="center" mt={1}>
<SettingsNumberInput
Expand All @@ -94,18 +96,12 @@ function ScalesCalibrationDialog({
onChange={(newValue) => onScalesF2Change(newValue)}
/>
</Box>
<Box display="flex" gap={5} alignItems="center" mt={3}>
<Box display="flex" alignItems="center" mt={5}>
<SettingsNumber
label="Cell 1 Weight"
label="Weight Value"
value={parseFloat(currentWeight.toFixed(1))}
maxDecimals={1}
onChange={() => setValue}
/>
<SettingsNumber
label="Cell 2 weight"
value={parseFloat(currentWeight.toFixed(1))}
maxDecimals={1}
onChange={() => setValue}
onChange={setValue}
/>
</Box>
</DialogContent>
Expand Down

0 comments on commit fc05a85

Please sign in to comment.