Skip to content

Commit c530b8d

Browse files
Merge pull request #2426 from bluewave-labs/rb-oct-15-send-test-font-color
Rb oct 15 send test font color
2 parents baf1fb3 + 1faf18b commit c530b8d

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

Clients/src/presentation/pages/Integrations/SlackManagement/NotificationRoutingModal.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
} from "@mui/material";
99
import React, { useEffect, useMemo, useState } from "react";
1010
import CustomizableButton from "../../../components/Button/CustomizableButton";
11-
import { viewProjectButtonStyle } from "../../../components/Cards/ProjectCard/style";
1211
import { ChevronDown as ExpandMoreIcon } from "lucide-react";
1312
import singleTheme from "../../../themes/v1SingleTheme";
1413
import {
@@ -305,7 +304,19 @@ const NotificationRoutingModal: React.FC<NotificationRoutingModalProps> = ({
305304
onClick={() => handleSendTestNotification(type.name)}
306305
size="medium"
307306
text="Send Test"
308-
sx={viewProjectButtonStyle}
307+
sx={{
308+
backgroundColor: theme.palette.background.main,
309+
color: theme.palette.primary.main,
310+
fontSize: 13,
311+
fontWeight: 600,
312+
px: 3,
313+
mt: 1,
314+
height: 34,
315+
border: `1px solid ${theme.palette.primary.main}`,
316+
"&:disabled": {
317+
cursor: "not-allowed",
318+
},
319+
}}
309320
isDisabled={(routingData.find((data) => data.routingType === type.name)?.id.length ?? 0) === 0}
310321
/>
311322
</Box>

0 commit comments

Comments
 (0)