mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
0a0040842c
The identicon was showing as a white circle on the connect page. This was a CSS error introduced when `jazzicon` was updated in #7898. The white circle shown was the white border around the identicon. This circle is an adjacent `div` in the DOM, and was rendered _underneath_ the identicon itself because it was placed first in the DOM. Unfortunately the new version of `jazzicon` is no longer explicitly positioned (it used to have `position: relative` set internally), so now it's lower in the stack order regardless of DOM position. Rather than placing the border adjacent and relying upon both elements being positioned, the border has been changed into a wrapping `div` instead. Now the stack order is more explicit. |
||
---|---|---|
.. | ||
app | ||
lib | ||
index.js |