module Playbook::Right

def right_props

def right_props
  selected_props = right_options.keys.select { |sk| try(sk) }
  return nil unless selected_props.present?
  selected_props.map do |k|
    value = send(k)
    css = positioning_css("right", value) if right.present?
    css
  end.compact.join(" ")
end