about summary refs log tree commit diff
path: root/app/assets
diff options
context:
space:
mode:
authormecab <masafumi.orz@gmail.com>2017-04-23 05:28:54 +0900
committerEugen <eugen@zeonfederated.com>2017-04-22 22:28:54 +0200
commit1646ca75f02f21e058d11885edd4ae9b5d7ff8cd (patch)
tree4bdf39f95d55a86497dc96292a07942353b0cb74 /app/assets
parentf876665264ded412980595cdd7870a64435bfc43 (diff)
Fix character images' sizing to make it robust (#2327)
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/components.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss
index 0d3ddccd7..425f44d95 100644
--- a/app/assets/stylesheets/components.scss
+++ b/app/assets/stylesheets/components.scss
@@ -1268,7 +1268,7 @@ a.status__content__spoiler-link {
 .getting-started {
   box-sizing: border-box;
   padding-bottom: 235px;
-  background: image-url('mastodon-getting-started.png') no-repeat 0 100% local;
+  background: image-url('mastodon-getting-started.png') no-repeat 0 100%/contain local;
   flex: 1 0 auto;
 
   p {
@@ -2203,7 +2203,7 @@ button.icon-button.active i.fa-retweet {
 }
 
 .onboarding-modal__page-one__elephant-friend {
-  background: image-url('elephant-friend.png') no-repeat 0 0;
+  background: image-url('elephant-friend.png') no-repeat center center/contain;
   width: 147px;
   height: 160px;
   margin-right: 10px;