feat: consistent style in all modes
This commit is contained in:
@@ -387,13 +387,13 @@ export const IntegrationSettingsModal = ({
|
|||||||
<div style={{ display: "flex", gap: "20px" }}>
|
<div style={{ display: "flex", gap: "20px" }}>
|
||||||
<Button
|
<Button
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
color="primary"
|
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSelectedIntegrationType("googleSheets");
|
setSelectedIntegrationType("googleSheets");
|
||||||
setSettings({ ...settings, integrationType: "googleSheets" });
|
setSettings({ ...settings, integrationType: "googleSheets" });
|
||||||
navigate(`/robots/${recordingId}/integrate/google`);
|
navigate(`/robots/${recordingId}/integrate/google`);
|
||||||
}}
|
}}
|
||||||
style={{ display: "flex", flexDirection: "column", alignItems: "center" }}
|
style={{ display: "flex", flexDirection: "column", alignItems: "center", background: 'white', color: '#ff00c3' }}
|
||||||
>
|
>
|
||||||
<img src="/public/svg/gsheet.svg" alt="Google Sheets" style={{ margin: "8px" }} />
|
<img src="/public/svg/gsheet.svg" alt="Google Sheets" style={{ margin: "8px" }} />
|
||||||
Google Sheets
|
Google Sheets
|
||||||
@@ -401,13 +401,13 @@ export const IntegrationSettingsModal = ({
|
|||||||
|
|
||||||
<Button
|
<Button
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
color="primary"
|
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSelectedIntegrationType("airtable");
|
setSelectedIntegrationType("airtable");
|
||||||
setSettings({ ...settings, integrationType: "airtable" });
|
setSettings({ ...settings, integrationType: "airtable" });
|
||||||
navigate(`/robots/${recordingId}/integrate/airtable`);
|
navigate(`/robots/${recordingId}/integrate/airtable`);
|
||||||
}}
|
}}
|
||||||
style={{ display: "flex", flexDirection: "column", alignItems: "center" }}
|
style={{ display: "flex", flexDirection: "column", alignItems: "center", background: 'white', color: '#ff00c3' }}
|
||||||
>
|
>
|
||||||
<img src="/public/svg/airtable.svg" alt="Airtable" style={{ margin: "8px" }} />
|
<img src="/public/svg/airtable.svg" alt="Airtable" style={{ margin: "8px" }} />
|
||||||
Airtable
|
Airtable
|
||||||
|
|||||||
Reference in New Issue
Block a user