The nav text in the nav dropdown seems to be blurry, I turned off the transform property in the element ( transform: translate3d(5px, 41px, 0px)) and it went back to normal, but this property seems to be added inline by js.
Same issue with me, it would be good if there will be any option to disable the popper.js on particular element.
Like:
$('.dropdown-toggle').dropdown({
"popperjs" : false
})
You can do this with display: static.
Or you can disable gpu Acceleration in Popper.js with:
Popper.Defaults.modifiers.computeStyle.gpuAcceleration = false;
Closed because it's not a Bootstrap issue and you have solutions 馃槈
Most helpful comment
You can do this with display: static.