Is there a way to customize popover button styles ? #1222
-
Hi team, I need to include this popover alongside the column header. I need to
I tried adding the style to the popover button but the button component doesn't respect that.
Is there a workaround for this ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jaymehta1986 Generally speaking you will not be able to apply a Classname, style attribute or CSS attribute to any Paste component. If you can, it's a bug, and will likely break in the future when we spot it.
|
Beta Was this translation helpful? Give feedback.
Hi @jaymehta1986
Generally speaking you will not be able to apply a Classname, style attribute or CSS attribute to any Paste component. If you can, it's a bug, and will likely break in the future when we spot it.
Positioning and layout
For positioning we ask you to think compositionally. You have two components in a layout (Text, Popover, aligned centrally). You will need to place your text and popover inside a layout that you create that aligns the two components together. You can do this a number of ways, potentially the easiest will be a simple box
This codesandbox goes over a fe…