Skip to content

Commit

Permalink
Add light mode and remove scrollbar for verses
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanroj23 committed Jan 12, 2025
1 parent 9bfecc1 commit fd7c3eb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions topics/topics.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ color: #B0BEC5;
height:100%;
}

.light-mode-basic{
background: #ffffff;
color: #000000;
}

.dark-mode-midnight{
background: #1A1A2E;
color: #F1F1F1;
Expand Down Expand Up @@ -168,6 +173,14 @@ color: #E4E4E4;
scrollbar-width: none;
}

.verse-content::-webkit-scrollbar {
display: none;
}

.verse-content {
scrollbar-width: none;
}




Expand Down
1 change: 1 addition & 0 deletions topics/topics.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ let themes = [
"dark-mode-deep-space",
"dark-mode-slate",
"dark-mode-elegant",
"light-mode-basic",
]

// Localstorage stuff
Expand Down

0 comments on commit fd7c3eb

Please sign in to comment.