Web-bugs: tezos.com - Bottom of page is chopped off

Created on 21 Jun 2017  路  7Comments  路  Source: webcompat/web-bugs



URL: https://tezos.com/team
Browser / Version: Firefox 54.0
Operating System: Mac OS X 10.12.5 (Sierra)
Problem type: Something else - I'll add details below

Steps to Reproduce

  1. Navigate to: https://tezos.com/team
  2. Scroll down to bottom of the page

Expected Behavior:
You should be able to scroll to the bottom with the lower names and globe icons visible, e.g. on Vivaldi and Safari.

Actual Behavior:
The page ends abruptly, chopping off the globe icons below the last row of names.

Screenshot Description

_From webcompat.com with 鉂わ笍_

browser-firefox engine-gecko

All 7 comments

Here's how it looks on Vivaldi:

Screenshot Description

Thanks @tagawa I can reproduce this issue in Firefox 56 for OSX, doesn't appear in Chrome / Safari.

Without getting too far into it, I can see that adding overflow: scroll to the drawer div, we see a second scrollbar appear and that bottom content is visible.

<div id="drawer" class="drawerActive">

It's the combination of an element with 100% height and 100px bottom-padding that's throwing things off. Firefox doesn't count extra padding-bottom the same way that Chrome does in this case.

Regardless, the effect they want to pull off should be done in a different way, otherwise the scrollbar will look strange in all browsers (going past the bottom of the page).

What they want to do is not to add 100px padding-bottom, but to have a height of 100% - 100px:

#drawer #d_content > div {
   height: calc(100% - 100px);
   padding-bottom:0px; /* not 100px */
}

That should render the same way across browsers these days, including keeping the scrollbars looking reasonable, so I'd suggest they make that change.

I wonder if @murbard or @vbmithr can help us contact the right person at @tezos?

Thanks, I will let them know.

After retesting the issue I received this error message after I accessed the provided link.

image

Tested with:
Browser / Version: Firefox Nightly 70.0a1 (2019-08-13)
Operating System: macOS 10.14.6

Closing as invalid.

Thanks for checking, @cipriansv. Yes, looks like they've removed that page so no longer an issue.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

karlcow picture karlcow  路  5Comments

massic80 picture massic80  路  5Comments

webcompat-bot picture webcompat-bot  路  5Comments

IngrownMink4 picture IngrownMink4  路  3Comments

Ezio916 picture Ezio916  路  4Comments