atomiks / tippyjs

Tooltip, popover, dropdown, and menu library
https://atomiks.github.io/tippyjs/
MIT License
12.03k stars 520 forks source link

Can I remove the white space on the right of the tooltip? #840

Closed Idkw13 closed 4 years ago

Idkw13 commented 4 years ago

Just hover on the button https://codepen.io/smio/pen/RwaoNby

atomiks commented 4 years ago

Yes, see Popper's preventOverflow#padding.

You'd put this in a popperOptions prop:

popperOptions: {
  modifiers: [
    {
      name: 'preventOverflow',
      options: {
        padding: 0, // no padding
      },
    },
  ],
}