-
Notifications
You must be signed in to change notification settings - Fork 663
Dropdown arrows visibility issue resolved #681
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
base: gh-pages
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Share the screen shot after the changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please provide the deployed link.
Here is the deployed link. |
css/theme-lava.css
Outdated
@@ -622,7 +622,6 @@ nav .container { | |||
-webkit-font-smoothing: antialiased; | |||
-moz-osx-font-smoothing: grayscale; | |||
content: "\e688"; | |||
color: #fff; | |||
font-size: 24px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have just removed the color property but the default color remains the same i.e.white so No change in UI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @mohitm15 and @Chaitanyassr for reviewing my pull request! :)
According to my understanding, the pull request made resolves the issue raised #672
I have attached screenshots and highlighted with a red rectangle, to show reflected changes.
I wanted to ask instead of deleting the color property, should I set it to black and update my pull request?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the color accordingly for that particular icon or class instead of deleting it
Thankyou @abishekvashok for reviewing my pull request. |
Now it looks weird on desktop, please use css breakpoints |
css/theme-lava.css
Outdated
@@ -622,7 +622,7 @@ nav .container { | |||
-webkit-font-smoothing: antialiased; | |||
-moz-osx-font-smoothing: grayscale; | |||
content: "\e688"; | |||
color: #fff; | |||
color: #000000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now it looks weird on desktop, please use css breakpoints
@media screen and (min-width: 480px)
{
color : black;
}
Thankyou @abishekvashok and @mohitm15 for reviewing my pull request. |
@abishekvashok @mohitm15 @Chaitanyassr kindly review my pull request! I have attached the images highlighting the changes made as requested. Here is the deployed link. |
Fixes #672