1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

GasDisplay: fix z-index for Confirm Approve warning (#17470)

* GasDisplay: fix z-index for warning

* GasDisplay: update z-index comment
This commit is contained in:
Ariella Vu 2023-02-02 23:31:34 +07:00 committed by GitHub
parent fbb4e42574
commit 33ee1e4f8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,10 @@
padding: 0 32px 16px 16px;
position: fixed;
bottom: 80px;
z-index: 1;
// We set z-index above ".send-v2__hex-data__input" by 1 index. ".send-v2__hex-data__input"
// was set to `z-index: 1025;` 4 years ago from the time of this comment. This should be a temp fix.
// TODO: Refactor z-indexes
z-index: 1026;
}
}
}