module Playbook::Bottom
def bottom_props
def bottom_props selected_props = bottom_options.keys.select { |sk| try(sk) } return nil unless selected_props.present? selected_props.map do |k| value = send(k) css = positioning_css("bottom", value) if bottom.present? css end.compact.join(" ") end