Skip to content

Commit adf36f9

Browse files
committed
Bigger point sizes
1 parent 31b19c2 commit adf36f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)