feat(frontend): cancel movie request modal

also includes tons of performance fixes for the modals
This commit is contained in:
sct
2020-10-14 14:50:33 +00:00
parent 61b6152e89
commit 1f9cbbfdf1
9 changed files with 301 additions and 305 deletions

View File

@@ -14,10 +14,10 @@ const Badge: React.FC<BadgeProps> = ({ badgeType = 'default', children }) => {
badgeStyle.push('bg-red-600 text-red-100');
break;
case 'warning':
badgeStyle.push('bg-orange-400 text-orange-100');
badgeStyle.push('bg-orange-500 text-orange-100');
break;
case 'success':
badgeStyle.push('bg-green-500 text-green-100');
badgeStyle.push('bg-green-400 text-green-100');
break;
default:
badgeStyle.push('bg-indigo-500 text-indigo-100');