fix: add bg-opacity to in-progress status badges (#3190)

This commit is contained in:
Brandon Cohen
2022-12-29 21:36:47 -05:00
committed by GitHub
parent 76335ec8d3
commit 68223f4b1e

View File

@@ -116,7 +116,7 @@ const StatusBadge = ({
const badgeDownloadProgress = (
<div
className={`
absolute top-0 left-0 z-10 flex h-full ${
absolute top-0 left-0 z-10 flex h-full bg-opacity-80 ${
status === MediaStatus.PROCESSING ? 'bg-indigo-500' : 'bg-green-500'
} transition-all duration-200 ease-in-out
`}