source: frontend/src/Components/TransportDetails/Line.js@ 5528b99

Last change on this file since 5528b99 was 5528b99, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

revert

  • Property mode set to 100644
File size: 465 bytes
Line 
1import React from "react";
2
3const 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"})
7 return (<>
8 <div style={{borderLeft: "5px solid #159895", height: "3em", marginLeft: left, marginTop: "-1.4rem", marginBottom: "-1.4rem"}}></div>
9 </>)
10}
11
12export default Line;
Note: See TracBrowser for help on using the repository browser.