# Logo squished in mobile view?

**URL:** https://meta.discourse.org/t/logo-squished-in-mobile-view/239596
**Category:** Support
**Created:** [September 21, 2022, 1:11am UTC](https://meta.discourse.org/t/logo-squished-in-mobile-view/239596 "2022-09-21T01:11:09Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![tiwane1](https://avatars.discourse-cdn.com/v4/letter/t/d9b06d/32.png) [@tiwane1](https://meta.discourse.org/u/tiwane1)
#### Post date: [September 21, 2022, 1:11am UTC](https://meta.discourse.org/t/logo-squished-in-mobile-view/239596/1 "2022-09-21T01:11:09Z")

</div>

(Not sure which category this fits into best, so am putting it in #General)

Our users recently noticed that on mobile devices, our logo is slightly squished. Has there been a change to how logos are dispalyed on mobile?

Laptop (Firefox):

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/c/9/dc944a005343f1471893af70e16397829c6576bf.png)

Mobile (iOS Discourse app, also the same in Safari):

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/4/9/d49c7b17cfa3fc14adf7751bc19406b948420a89.png)

Forum URL: [https://forum.inaturalist.org/](https://forum.inaturalist.org/)

---

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [October 14, 2022, 8:11pm UTC](https://meta.discourse.org/t/logo-squished-in-mobile-view/239596/2 "2022-10-14T20:11:13Z")

</div>

Hello,

I just checked your site and it seems to the logo has a 30px height in a custom css which cause this.

 ![Screenshot 2022-10-14 at 22.01.00](https://global.discourse-cdn.com/meta/original/4X/4/5/3/45368e2a28f312a5337200a19042fe65bb39a891.png)

```scss
.d-header #site-logo { 
  height: 30px;
}

```

Change it to 🔽

```scss
.d-header #site-logo { 
  max-height: 30px;
}

```

OR

Move this piece of code **from Common to Desktop** so it won’t be applied to Mobile seems to fix this issue. 🙂

 ![Screenshot 2022-10-14 at 22.03.16](https://global.discourse-cdn.com/meta/original/4X/0/3/c/03cb0eaf1083b1c20b983d0a43b66c5f5f544079.png)

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [November 13, 2022, 8:11pm UTC](https://meta.discourse.org/t/logo-squished-in-mobile-view/239596/3 "2022-11-13T20:11:39Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
