Sizing and color changes pt III

bust_cache
Rick Carlino 2020-01-02 16:45:32 -06:00
parent f51e9ad4c9
commit 44b4604552
2 changed files with 6 additions and 8 deletions

View File

@ -61,13 +61,7 @@ export function TileSetServoAngle(props: StepParams) {
confirmStepDeletion={props.confirmStepDeletion} />
<StepContent className={className}>
<Row>
<Col xs={12}>
<label>{t("Servo pin")}</label>
<ServoPinSelection {...props} />
</Col>
</Row>
<Row>
<Col xs={12}>
<Col lg={4} xs={6}>
<label>
{t("Servo angle (0-180)")}
</label>
@ -78,6 +72,10 @@ export function TileSetServoAngle(props: StepParams) {
index={index}
field={"pin_value"} />
</Col>
<Col lg={8} xs={6}>
<label>{t("Servo pin")}</label>
<ServoPinSelection {...props} />
</Col>
</Row>
</StepContent>
</StepWrapper>;

View File

@ -19,7 +19,7 @@ export function TileTogglePin(props: StepParams) {
confirmStepDeletion={props.confirmStepDeletion} />
<StepContent className={className}>
<Row>
<PinSelect {...props} width={12} />
<PinSelect {...props} width={6} />
</Row>
</StepContent>
</StepWrapper>;