File tree Expand file tree Collapse file tree
src/frontend/Sudoku.React/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33}
44
55.cell {
6+ background-color : # FAEBD7 ;
67 position : relative;
78}
89
10+ .highlight {
11+ background-color : # d8eef8 !important ;
12+ }
13+
14+ .selected {
15+ background-color : # b8d8f0 !important ;
16+ }
17+
18+ .invalid {
19+ background-color : # ffdddd !important ;
20+ }
21+
922.cell input ,
1023.cell label {
1124 align-items : center;
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export default function CellInput({
5959 value = { cell . hasValue && cell . value !== null ? cell . value . toString ( ) : '' }
6060 onClick = { handleClick }
6161 onChange = { ( ) => { } }
62- style = { cell . possibleValues . length > 0 && ! cell . hasValue ? { opacity : 0 } : undefined }
62+ style = { cell . possibleValues . length > 0 && ! cell . hasValue ? { backgroundColor : 'transparent' } : undefined }
6363 />
6464 </ td >
6565 ) ;
You can’t perform that action at this time.
0 commit comments