Browse Source

Fix text overlapping image in Edge and on mobile (#582)

Changing the way the background image is positioned and the box is sized should fix problems with the text overlapping the image on mobile browsers and Edge.
closed-social-glitch-2
tom 7 years ago
committed by Eugen
parent
commit
b84d1533d4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/assets/stylesheets/components.scss

+ 2
- 2
app/assets/stylesheets/components.scss View File

@ -684,8 +684,8 @@
box-sizing: border-box;
overflow-y: auto;
padding-bottom: 235px;
background: image-url('mastodon-getting-started.png') no-repeat 0 100% local;
height: 100%;
background: image-url('mastodon-getting-started.png') no-repeat 100% bottom;
height: auto;
p {
color: $color2;

Loading…
Cancel
Save