Browse Source

fix(ui): increase currency selector z-index

Ensure that the currency selector dropdown on the pay/request form shows
ontop of other elements on the page to ensure that the full area of the
dropdown is clickable.
renovate/lint-staged-8.x
Tom Kirkpatrick 7 years ago
parent
commit
5fac7b1e2b
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 1
      app/components/Form/Pay.scss
  2. 1
      app/components/Form/Request.scss

1
app/components/Form/Pay.scss

@ -123,6 +123,7 @@
visibility: hidden; visibility: hidden;
position: absolute; position: absolute;
top: 30px; top: 30px;
z-index: 10;
&.active { &.active {
visibility: visible; visibility: visible;

1
app/components/Form/Request.scss

@ -102,6 +102,7 @@
visibility: hidden; visibility: hidden;
position: absolute; position: absolute;
top: 30px; top: 30px;
z-index: 10;
&.active { &.active {
visibility: visible; visibility: visible;

Loading…
Cancel
Save