Module: StimulusPlumbers::Themes::Tailwind::Button::Group

Included in:
StimulusPlumbers::Themes::TailwindTheme
Defined in:
lib/stimulus_plumbers/themes/tailwind/button/group.rb

Constant Summary collapse

LAYOUTS =
{
  inline:  %w[
    inline-flex rounded-(--sp-radius-md) shadow-(--sp-shadow-xs)
    [&>*:not(:first-child)]:-ml-px
    [&>*]:rounded-none
    [&>*:first-child]:rounded-s-(--sp-radius-md)
    [&>*:last-child]:rounded-e-(--sp-radius-md)
  ].freeze,
  stacked: %w[
    flex flex-col rounded-(--sp-radius-md) shadow-(--sp-shadow-xs)
    [&>*:not(:first-child)]:-mt-px
    [&>*]:rounded-none
    [&>*:first-child]:rounded-t-(--sp-radius-md)
    [&>*:last-child]:rounded-b-(--sp-radius-md)
  ].freeze
}.freeze