1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Replace percentage opacity value (#8898)

The CSS `opacity` rule accepts percentages on newer browsers, but some
older browser versions we support (e.g. Firefox v60) doesn't support
them. A number is now used instead, which is supported by all browsers
we support.
This commit is contained in:
Mark Stacey 2020-07-02 21:51:41 -03:00 committed by GitHub
parent f5d4ab1cc1
commit 3832d694a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@
width: 100%;
height: 100%;
background: black;
opacity: 20%;
opacity: .2;
}
&-content {