react-scroll icon indicating copy to clipboard operation
react-scroll copied to clipboard

Link not working with tailwind-scrollbar

Open DaliborTrampota opened this issue 2 years ago • 3 comments

when applying this class (scrollbar-thin or scrollbar) to my scroll bars, Link element stops working. these are the css properties:

.scrollbar-thin {
    --scrollbar-track: initial !important;
    --scrollbar-thumb: initial !important;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track) !important;
    overflow: overlay !important;
}
.scrollbar-thin.overflow-x-hidden {
    overflow-x: hidden !important;
}
.scrollbar-thin.overflow-y-hidden {
    overflow-y: hidden !important;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track) !important;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb) !important;
}
.scrollbar-thin {
    scrollbar-width: thin !important;
}
.scrollbar-thin::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}

I'd like to have my scrollbar custom but I'd also like to have the smooth scroll. Now it doesnt redirect at all, the a element has no href property nor it jumps to the id.

DaliborTrampota avatar Apr 24 '22 19:04 DaliborTrampota

Interresting, not familiar with the issue. Could you provide a plunkr demonstrating it?

fisshy avatar Apr 25 '22 05:04 fisshy

I'm sorry but I have no idea how to use it. I just checked it, I managed to add react-scroll package but not tailwind. I'm really newbie in react and setting up projects is always painful for me. If you manage to install tailwind v3 there https://plnkr.co/edit/Z12pDp9VIXFHGKmx?open=Hello.js&deferRun=1 it should be broken. https://raw.githubusercontent.com/DaliborTrampota/KokNut-Website/master/package.json?token=GHSAT0AAAAAABS7XGFZFK3L33JEFG2LIWQSYTGJKKQ here is my package.json

Also I forgot to mention in the issue that I'm using tailwind v3 and react v17

DaliborTrampota avatar Apr 25 '22 07:04 DaliborTrampota

any update?

DaliborTrampota avatar Apr 28 '22 18:04 DaliborTrampota