Module: NattyUI::Attributes::Margin
- Defined in:
- lib/natty-ui/attributes.rb
Instance Attribute Summary collapse
-
#margin ⇒ Array<Integer>
Element margin.
-
#margin_bottom ⇒ Integer
Element bottom margin.
-
#margin_left ⇒ Integer
Element left margin.
-
#margin_right ⇒ Integer
Element right margin.
-
#margin_top ⇒ Integer
Element top margin.
Instance Attribute Details
#margin ⇒ Array<Integer>
Element margin.
320 321 322 |
# File 'lib/natty-ui/attributes.rb', line 320 def margin @margin end |
#margin_bottom ⇒ Integer
Element bottom margin.
353 |
# File 'lib/natty-ui/attributes.rb', line 353 def margin_bottom = @margin[2] |
#margin_left ⇒ Integer
Element left margin.
364 |
# File 'lib/natty-ui/attributes.rb', line 364 def margin_left = @margin[3] |
#margin_right ⇒ Integer
Element right margin.
342 |
# File 'lib/natty-ui/attributes.rb', line 342 def margin_right = @margin[1] |
#margin_top ⇒ Integer
Element top margin.
331 |
# File 'lib/natty-ui/attributes.rb', line 331 def margin_top = @margin[0] |