Class: Cat::Style::Center

Inherits:
Object
  • Object
show all
Defined in:
lib/cat/style/center.rb

Instance Method Summary collapse

Instance Method Details

#to_sObject



4
5
6
7
8
9
10
11
# File 'lib/cat/style/center.rb', line 4

def to_s
  %{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
  }
end