Changeset 5528b99 for frontend/src/Components/TransportDetails
- Timestamp:
- 01/16/24 16:34:03 (10 months ago)
- Branches:
- master
- Children:
- 07f4e8b
- Parents:
- e6c2521
- Location:
- frontend/src/Components/TransportDetails
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/Components/TransportDetails/FinalPoint.js
re6c2521 r5528b99 17 17 <> 18 18 <Row> 19 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col- md-4" style={{paddingLeft: "2.6rem"}}>19 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col-auto" style={{paddingLeft: "2.6rem"}}> 20 20 <h5 className="m-auto">{getTimeAsString(props.time)}</h5> 21 21 </Col> } -
frontend/src/Components/TransportDetails/Line.js
re6c2521 r5528b99 2 2 3 3 const Line = (props) => { 4 const left = props.left === "true" ? "1.8rem" : "1.85rem"; 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"}) 5 7 return (<> 6 8 <div style={{borderLeft: "5px solid #159895", height: "3em", marginLeft: left, marginTop: "-1.4rem", marginBottom: "-1.4rem"}}></div> -
frontend/src/Components/TransportDetails/Waypoint.js
re6c2521 r5528b99 16 16 } 17 17 18 <<<<<<< HEAD 18 19 return ( 19 20 <> … … 57 58 </> 58 59 ); 60 ======= 61 return ( 62 <> 63 <Row className="d-flex flex-row gap-0"> 64 {props.left === "true" && <Col className="d-flex flex-column justify-content-center col-auto" style={{paddingLeft: "2.6rem"}}> 65 <h5 style={{color: props.routes === "true" ? "white" : "" }} className="m-auto">{getTimeAsString(props.time)}</h5> 66 </Col>} 67 <Col md="auto"> 68 <RxDot size={"4rem"} color="#159895"></RxDot> 69 </Col> 70 <Col className="d-flex flex-column justify-content-center"> 71 <h3 className="my-auto" style={{...style, fontSize: props.routes === "true" ? "1.3rem" : "", color: props.routes === "true" ? "#708090 " : ""}}>{props.city}</h3> 72 </Col> 73 {props.left !== "true" && <Col className="d-flex flex-column justify-content-center"> 74 <h5>{getTimeAsString(props.time)}</h5> 75 </Col>} 76 </Row> 77 <Row> 78 <Line left={props.left}> </Line> 79 </Row> 80 </> 81 ); 82 >>>>>>> parent of ac19a0c (authContext impl, admin panel impl, search bar fixes, reservations listings impl) 59 83 }; 60 84
Note:
See TracChangeset
for help on using the changeset viewer.