7
8
9
10
11
12
13
14
|
# File 'lib/bulma_x/shared/text_options.rb', line 7
def text_options
option :text_modifier, values: self::MODIFIERS_PALETTE, default: nil
option :text_alignment, values: %i[left centered right justified], default: nil
option :text_transform, values: %i[lowercase uppercase capitalize italic underlined] + [nil], default: nil
option :text_weight, values: %i[light normal medium semibold bold], default: nil
option :text_family, values: %i[sans-serif monospace primary secondary code], default: nil
option :text_size, values: [nil, 1, 2, 3, 4, 5, 6, 7].freeze
end
|