Browse Source

Make cell borders gray instead of black

master
Dylan Baker 3 years ago
parent
commit
b852dd7358
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/index.css

+ 3
- 3
src/index.css View File

46
 }
46
 }
47
 
47
 
48
 .cell {
48
 .cell {
49
-  border: 1px solid black;
49
+  border: 1px solid #999;
50
   border-right: none;
50
   border-right: none;
51
   border-bottom: none;
51
   border-bottom: none;
52
   display: inline-block;
52
   display: inline-block;
55
 }
55
 }
56
 
56
 
57
 .row:last-child .cell {
57
 .row:last-child .cell {
58
-  border-bottom: 1px solid black;
58
+  border-bottom: 1px solid #999;
59
 }
59
 }
60
 
60
 
61
 .cell:last-child {
61
 .cell:last-child {
62
-  border-right: 1px solid black;
62
+  border-right: 1px solid #999;
63
 }
63
 }
64
 
64
 
65
 .cell.alive {
65
 .cell.alive {

Loading…
Cancel
Save