diff options
author | Xavier Noria <fxn@hashref.com> | 2013-01-06 08:14:59 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-01-06 08:14:59 -0800 |
commit | 7d365135a3d39f24e4ae8bb594107aa4e7bdda73 (patch) | |
tree | d79a87cb25e54fcd4c3798e44dd035b4f7ab9b64 | |
parent | cea4f76ff954cd8c57484b2bce456c3ef03a3c5e (diff) | |
parent | 5322a3e95e3fc303241cf898e8c5fef6e4857712 (diff) | |
download | rails-7d365135a3d39f24e4ae8bb594107aa4e7bdda73.tar.gz rails-7d365135a3d39f24e4ae8bb594107aa4e7bdda73.tar.bz2 rails-7d365135a3d39f24e4ae8bb594107aa4e7bdda73.zip |
Merge pull request #8770 from goshakkk/guides-img-fix
Fix img width in guides
-rw-r--r-- | guides/assets/stylesheets/main.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/assets/stylesheets/main.css b/guides/assets/stylesheets/main.css index 010f8ed228..dd029e6314 100644 --- a/guides/assets/stylesheets/main.css +++ b/guides/assets/stylesheets/main.css @@ -83,6 +83,10 @@ table th { padding: 0.5em 1em; } +img { + max-width: 100%; +} + /* Structure and Layout --------------------------------------- */ |