🩹 Fix dark mode bg remaining issues

This commit is contained in:
Baptiste Arnaud
2022-12-22 09:59:50 +01:00
parent 9149af7e6b
commit d1b5b6ebe6
8 changed files with 44 additions and 30 deletions

View File

@@ -23,11 +23,7 @@ export const MakeComSettings = ({ block }: Props) => {
return (
<Stack spacing={4}>
<Alert
status={webhook?.url ? 'success' : 'info'}
bgColor={webhook?.url ? undefined : 'blue.50'}
rounded="md"
>
<Alert status={webhook?.url ? 'success' : 'info'} rounded="md">
<AlertIcon />
{webhook?.url ? (
<>Your scenario is correctly configured 🚀</>

View File

@@ -155,7 +155,7 @@ export const WebhookSettings = ({
return (
<Stack spacing={4}>
{provider && (
<Alert status={'info'} bgColor={'blue.50'} rounded="md">
<Alert status={'info'} rounded="md">
<AlertIcon />
<Stack>
<Text>Head up to {provider.name} to configure this block:</Text>

View File

@@ -23,11 +23,7 @@ export const ZapierSettings = ({ block }: Props) => {
return (
<Stack spacing={4}>
<Alert
status={webhook?.url ? 'success' : 'info'}
bgColor={webhook?.url ? undefined : 'blue.50'}
rounded="md"
>
<Alert status={webhook?.url ? 'success' : 'info'} rounded="md">
<AlertIcon />
{webhook?.url ? (
<>Your zap is correctly configured 🚀</>