-
I tried installing hugo-snap-gallery, when i click on the image once the entire thing shows the hover color of the link until i put my cursor at a corner. I understand that galleries are not supported but I thought it was worth an ask in case the fix is something I can quickly do on my end. Thanks! https://aizera.page/post/atomic-habits-what-helped-me-the-most/ |
Beta Was this translation helpful? Give feedback.
Answered by
Aizera
Dec 4, 2023
Replies: 1 comment 5 replies
-
I'm just guessing, but try adding this to the top of @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base{
html {
/* https://css-tricks.com/custom-tailwind-css/ His recommendations */
-webkit-tap-highlight-color: transparent;
input, textarea, button, select, a {
/* https://css-tricks.com/snippets/css/remove-gray-highlight-when-tapping-links-in-mobile-safari/ */
-webkit-tap-highlight-color: transparent;
}
}
} and see if it helps? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
omg!! thank you for your reply again. It is not exactly the same but I applied the concept on snap-gallery.css and set opacity : 0; and it fixed!! It is a pain that I don't understand everything and I'm forced to work off of just random partial knowledge but thank you for persisting.