Skip to content

Commit

Permalink
keep row shading
Browse files Browse the repository at this point in the history
  • Loading branch information
joshreisner committed Sep 16, 2024
1 parent bd83fda commit 030c970
Show file tree
Hide file tree
Showing 3 changed files with 69,261 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"serve": "serve public",
"watch": "npx mix watch",
"start": "npx mix watch",
"build": "npx mix --production"
},
"devDependencies": {
Expand Down
69,256 changes: 69,253 additions & 3 deletions public/app.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion src/styles/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,13 @@ export const tableCss = css`
tbody tr {
border-top: 1px solid ${color.medium};
:nth-of-type(2n + 1) {
background-color: color-mix(in srgb, var(--text) 0.05%, transparent);
background-color: color-mix(in srgb, var(--text) 3%, transparent);
a {
color: color-mix(in srgb, var(--text) 10%, var(--link));
}
small {
color: var(--text);
}
}
}
Expand Down

0 comments on commit 030c970

Please sign in to comment.