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

"Show More" button stay colored after click causing the button look like is being hold. #161

Open
simone-lungarella opened this issue Sep 18, 2021 · 1 comment

Comments

@simone-lungarella
Copy link

Show More and then Show Less buttons stay fully colored after click, it looks like the buttons are still pressed.
My suggestion is the following:

-  &:hover,
-  &:focus,
-  &:active {
-    background-color: var(--green-tint);
-    outline: none;
-  }
+  &:hover {
+    background-color: var(--green-tint);
+    outline: none;
+  }
+  &:focus,
+  &:active {
+    outline: none;
+  }

so to keep out the background color on focus and active state.

@SABERGLOW
Copy link

@simone-lungarella Hi there... I tried your fix, and it worked as you intended it, but it also breaks the buttons in responsive layout. e.g. Resume button, and Contact Me button stop working in phone layouts.

Can you please investigate further and provide a fix for that? Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants