Changeset ac19a0c for frontend/src/Components/TransportDetails
- Timestamp:
- 01/13/24 23:19:50 (10 months ago)
- Branches:
- master
- Children:
- e85a562
- Parents:
- e9b4ba9
- Location:
- frontend/src/Components/TransportDetails
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/Components/TransportDetails/FinalPoint.js
re9b4ba9 rac19a0c 17 17 <> 18 18 <Row> 19 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col- auto" style={{paddingLeft: "2.6rem"}}>19 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col-md-4" style={{paddingLeft: "2.6rem"}}> 20 20 <h5 className="m-auto">{getTimeAsString(props.time)}</h5> 21 21 </Col> } -
frontend/src/Components/TransportDetails/Line.js
re9b4ba9 rac19a0c 2 2 3 3 const Line = (props) => { 4 console.log(props.left) 5 const left = props.left === "true" ? "9.08rem" : "2.6rem"; 6 console.log({borderLeft: "5px solid #159895", height: "3em", marginLeft: left, marginTop: "-1.4rem", marginBottom: "-1.4rem"}) 4 const left = props.left === "true" ? "1.8rem" : "1.85rem"; 7 5 return (<> 8 6 <div style={{borderLeft: "5px solid #159895", height: "3em", marginLeft: left, marginTop: "-1.4rem", marginBottom: "-1.4rem"}}></div> -
frontend/src/Components/TransportDetails/Waypoint.js
re9b4ba9 rac19a0c 17 17 <> 18 18 <Row className="d-flex flex-row gap-0"> 19 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col- auto" style={{paddingLeft: "2.6rem"}}>19 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col-md-4" style={{paddingLeft: "2.6rem"}}> 20 20 <h5 style={{color: props.routes === "true" ? "white" : "" }} className="m-auto">{getTimeAsString(props.time)}</h5> 21 21 </Col>} … … 30 30 </Col>} 31 31 </Row> 32 <Row> 33 <Line left={props.left}> </Line> 34 </Row> 32 <Row className="d-flex flex-row gap-0"> 33 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col-md-4" style={{paddingLeft: "2.6rem"}}> 34 35 </Col>} 36 <Col md="auto"> 37 <Line left={props.left}> </Line> 38 </Col> 39 <Col className="d-flex flex-column justify-content-center"> 40 </Col> 41 {props.left !== "true" && <Col className="d-flex flex-column justify-content-center"> 42 43 </Col>} 44 </Row> 45 {/*<Row>*/} 46 {/*<Line left={props.left}> </Line>*/} 47 {/*</Row>*/} 35 48 </> 36 49 );
Note:
See TracChangeset
for help on using the changeset viewer.