Add docs for withoutTail

This commit is contained in:
Juan Edi 2021-05-20 19:25:31 -03:00
parent cc3d3e4305
commit 021d553e45

View File

@ -172,6 +172,12 @@ type Alignment
| End Px
{-| Makes it so that the tooltip does not have a tail!
This will center the tooltip relative to the trigger content, superseding any
custom alignment set by `alignStart` and `alignEnd`.
-}
withoutTail : Attribute msg
withoutTail =
Attribute (\config -> { config | tail = WithoutTail })