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,7 +46,7 @@ code {
46 46
 }
47 47
 
48 48
 .cell {
49
-  border: 1px solid black;
49
+  border: 1px solid #999;
50 50
   border-right: none;
51 51
   border-bottom: none;
52 52
   display: inline-block;
@@ -55,11 +55,11 @@ code {
55 55
 }
56 56
 
57 57
 .row:last-child .cell {
58
-  border-bottom: 1px solid black;
58
+  border-bottom: 1px solid #999;
59 59
 }
60 60
 
61 61
 .cell:last-child {
62
-  border-right: 1px solid black;
62
+  border-right: 1px solid #999;
63 63
 }
64 64
 
65 65
 .cell.alive {

Loading…
Cancel
Save