Fixed non clickable link issue in popover (#194)

This commit is contained in:
darth-coder00 2021-08-16 09:20:31 +05:30 committed by GitHub
parent d170cfe1c6
commit e006191ca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -221,11 +221,6 @@
.tw-nav {
@apply tw-font-normal tw-px-2;
}
/* popover css start */
.tippy-popper {
@apply tw-pointer-events-auto;
}
/* popover css end */
.tw-no-description {
@apply tw-text-grey-muted;

View File

@ -690,3 +690,9 @@ a:focus {
border-radius: 20px;
z-index: 2;
}
/* popover css start */
.tippy-popper {
pointer-events: auto !important;
}
/* popover css end */