-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
Description
Summary
Im trying to add rich text editor (quilljs) into my application, and the text field is located inside <Card />
component. Because of hardcoded overflow: clip
value tooltips for links, changing headings, color picker, etc. are not displayed correctly.
At the same time recreating component is quite complicated because its' internal implementation relying on ShadowBevel which is not publicly available.
Are there any potential problems with exposing "overflow" as a component property?
Rationale
To be more flexible on the application side, and be able to pass overflow in case the default "clip" is not enough:
<Card roundedAbove="sm" overflow="visible">
...
</Card>