diff options
author | Sean Collins <sean@cllns.com> | 2015-04-23 12:27:14 -0400 |
---|---|---|
committer | Sean Collins <sean@cllns.com> | 2015-04-23 12:27:14 -0400 |
commit | 46f511440571b37909a5950f2d5d3b50edbfabf0 (patch) | |
tree | 7187da40cf185df3c43d089b935795e0581dbad7 /railties/lib/rails/templates | |
parent | 805bfc9886c871262b8e5d6b0141b059765b950d (diff) | |
download | rails-46f511440571b37909a5950f2d5d3b50edbfabf0.tar.gz rails-46f511440571b37909a5950f2d5d3b50edbfabf0.tar.bz2 rails-46f511440571b37909a5950f2d5d3b50edbfabf0.zip |
Fix CSS formatting in welcome#index.html.erb
Diffstat (limited to 'railties/lib/rails/templates')
-rw-r--r-- | railties/lib/rails/templates/rails/welcome/index.html.erb | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/railties/lib/rails/templates/rails/welcome/index.html.erb b/railties/lib/rails/templates/rails/welcome/index.html.erb index 6726c23fc9..acf04af416 100644 --- a/railties/lib/rails/templates/rails/welcome/index.html.erb +++ b/railties/lib/rails/templates/rails/welcome/index.html.erb @@ -18,7 +18,9 @@ color: #000; } - a {color: #03c} + a { + color: #03c; + } a:hover { background-color: #03c; @@ -64,7 +66,10 @@ height: 64px; } - #header h1, #header h2 {margin: 0} + #header h1, + #header h2 { + margin: 0; + } #header h2 { color: #888; @@ -104,7 +109,9 @@ color: #555; } - #about-content td.value {color: #000} + #about-content td.value { + color: #000; + } #about-content ul { padding: 0; |