File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -488,10 +488,10 @@ export default function App() {
488488 < div className = "absolute inset-0 flex items-center justify-center" >
489489 < div className = "w-full h-full relative" onClick = { AddPoint } >
490490 { pysplan_handler . runs [ run_index ] . points . map ( ( p , idx ) => (
491- < div key = { idx } className = "absolute bg-green-500 w-2 h-2 rounded-full" style = { { left : `${ p . x } px` , bottom : `${ p . y } px` } } />
491+ < div key = { idx } className = "absolute bg-green-500 w-3 h-3 rounded-full" style = { { left : `${ p . x } px` , bottom : `${ p . y } px` } } />
492492 ) ) }
493493 { spline_points . map ( ( p , idx ) => (
494- < div key = { idx } className = "absolute bg-green-400 w-1 h-1 rounded-full" style = { { left : `${ p . x } px` , bottom : `${ p . y } px` } } />
494+ < div key = { idx } className = "absolute bg-green-400 w-2 h-2 rounded-full" style = { { left : `${ p . x } px` , bottom : `${ p . y } px` } } />
495495 ) ) }
496496 </ div >
497497 </ div >
You can’t perform that action at this time.
0 commit comments