Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.

Commit

Permalink
Fix striped downloads table in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
electronicboy committed Oct 24, 2021
1 parent 83855c8 commit e33a354
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/css/downloads.scss
Expand Up @@ -19,9 +19,10 @@
flex-grow: 1;
}
}

table.striped > tbody > tr:nth-child(2n+1) {
background-color: #1e2021;
@media (prefers-color-scheme: dark) {
table.striped > tbody > tr:nth-child(2n+1) {
background-color: #1e2021;
}
}

@media only screen and (max-width: 601px) {
Expand Down

3 comments on commit e33a354

@LaserSlime
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its still striped for me...

@electronicboy
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not been deployed yet.

@aurorasmiles
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually forgot the people use light mode lol

Please sign in to comment.