José
José
Hi @johnuno11, I'm not sure what are you asking for on this issue...
Unfortunately, this library was not designed to be neither responsive nor to work on mobile devices (I coded this more than a decade ago, before even owning an mobile device...
Hi Enrique, I think the issue on this case is that the position of the "eye" isn't defined until the `.svg` file has been loaded (in other words: when you...
@johnuno11 I'm not sure what is the issue about, maybe is from another repository?
It would be also be useful (and probably easier for the maintainer of this project) to provide a way to _disable_ the drop behavior, so we can implement our custom...
I'm having the same problem, I'm doing: ```js import { Dropdown } from "bootstrap"; ... new Dropdown(document.getElementById('my-dropdown'), { boundary: document.querySelector('body') }); ``` But the `boundary` parameter is completely ignored. Codepen...
If adding `position-fixed` don't works, you can use the `strategy: "fixed"` option, as suggested on https://github.com/twbs/bootstrap/issues/36358#issuecomment-1162479957 ```js new Dropdown(document.getElementById('my-dropdown'), { boundary: document.querySelector('body'), popperConfig: function (defaultBsPopperConfig) { return { ...defaultBsPopperConfig, strategy:...
Related to #1606