1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/app
Mark Stacey 0a0040842c
Fix display of identicon on Connect page (#8107)
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.
2020-02-26 09:34:39 -04:00
..
components Fix display of identicon on Connect page (#8107) 2020-02-26 09:34:39 -04:00
css Move default white background from body to root element (#8110) 2020-02-26 09:33:58 -04:00
ducks Enable core ESLint no-mixed-operators rule 2020-02-17 21:06:36 -03:30
helpers Remove recompose (#8097) 2020-02-24 19:28:26 -03:30
pages Remove selected address history (#8104) 2020-02-25 14:39:38 -08:00
selectors Remove selected address history (#8104) 2020-02-25 14:39:38 -08:00
store Remove selected address history (#8104) 2020-02-25 14:39:38 -08:00