Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dark mode makes entire page dark #15

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ nav {
padding: 20px;
padding-left: 0px!important;
color: #f8f8f8;
padding-right: 0px!important;
}

.content {
Expand All @@ -25,7 +26,9 @@ nav {
font-size: 1.2rem;
line-height: 1.1;
height: 90vh;
padding-bottom: 0px!important;
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Hi @Tanmayi03 it seems that you have not pulled the recent changes as padding-right: 0px!important; is already added in the code. Please do git pull and then commit your changes. Also, I am not sure if this is the correct solution as we are not using content anywhere for now.


.dark-theme {
background-color: #1f1b24;
color: #f8f8f8;
Expand Down
4 changes: 4 additions & 0 deletions src/components/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,7 @@
color: #383838;
font-size: 18px;
}

.about-container {
padding-right: 0px!important;
}