Skip to content

Commit

Permalink
Replace percentage opacity value (#8898)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Gudahtt authored Jul 3, 2020
1 parent f5d4ab1 commit 3832d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/components/ui/popover/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
width: 100%;
height: 100%;
background: black;
opacity: 20%;
opacity: .2;
}

&-content {
Expand Down

0 comments on commit 3832d69

Please sign in to comment.