Sha256: aa6e9078a9e5a016364f26e5f8b9bb7f60abe7b7370c26b76c0210cba4926b10
Contents?: true
Size: 688 Bytes
Versions: 551
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true require "playbook/position_props_css" module Playbook module Bottom include Playbook::PositionPropsCss def self.included(base) base.prop :bottom end def bottom_values %w[0 xxs xs sm md lg xl auto initial inherit] end def bottom_options { bottom: "bottom", } end private 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 end end
Version data entries
551 entries across 551 versions & 1 rubygems