Skip to content

Commit

Permalink
Replace color codes with variable
Browse files Browse the repository at this point in the history
  • Loading branch information
parksb committed Nov 12, 2023
1 parent 9e5c710 commit da703e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ table {
}

table tbody tr {
background-color: #fff !important;
background-color: var(--bg) !important;
}

table td {
border: 1px #000 solid;
border: 1px var(--fg) solid;
}

table thead th {
border: 1px #000 solid;
background-color: #efefef;
border: 1px var(--fg) solid;
background-color: var(--table-header-bg)
}

table td hr {
color: #efefef;
color: var(--talbe-border-color);
}

0 comments on commit da703e0

Please sign in to comment.