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:
parent
f5d4ab1cc1
commit
3832d694a4
@ -73,7 +73,7 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: black;
|
||||
opacity: 20%;
|
||||
opacity: .2;
|
||||
}
|
||||
|
||||
&-content {
|
||||
|
Loading…
Reference in New Issue
Block a user