From 817b09b6025d52fe7b51f81b9544ee6d9b30e609 Mon Sep 17 00:00:00 2001 From: Emilia Date: Thu, 11 May 2023 17:54:49 -0400 Subject: [PATCH] Make wells circles and change color defaults --- src/components/plate.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/plate.css b/src/components/plate.css index 080d789..f387310 100644 --- a/src/components/plate.css +++ b/src/components/plate.css @@ -5,12 +5,14 @@ table, tr, td { td.plate_cell { width: 30px; height: 30px; - background: blue; + background: none; + border-radius: 50%; + border: 2px solid black; } td.plate_cell:hover { - background: purple; + background: black; } td.current_select { - border: 3px solid red; + background: lightblue; }