Skip to content

Commit

Permalink
Remove top and bottom borders of cell grid
Browse files Browse the repository at this point in the history
This improves the illusion of a printed card.
  • Loading branch information
dgmstuart committed Apr 22, 2024
1 parent f906b14 commit c051f62
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/Grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
background-color: #fcfaf7;
}

.Grid tr:first-child td {
border-top: none;
}

.Grid tr:last-child td {
border-bottom: none;
}

.Row {
height: 80px;
}

0 comments on commit c051f62

Please sign in to comment.