Changeset 07f4e8b for frontend/src/Components/TransportDetails
- Timestamp:
- 01/24/24 17:42:28 (10 months ago)
- Branches:
- master
- Children:
- 0f5aa27
- Parents:
- 5528b99
- Location:
- frontend/src/Components/TransportDetails
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/Components/TransportDetails/FinalPoint.js
r5528b99 r07f4e8b 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
r5528b99 r07f4e8b 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
r5528b99 r07f4e8b 16 16 } 17 17 18 <<<<<<< HEAD19 18 return ( 20 19 <> … … 58 57 </> 59 58 ); 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)83 59 }; 84 60
Note:
See TracChangeset
for help on using the changeset viewer.