mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-15 14:19:41 -06:00
Added notifications to server validation and small styling changes
This commit is contained in:
@@ -77,6 +77,7 @@ export const updateUptimeMonitor = createAsyncThunk(
|
||||
name: monitor.name,
|
||||
description: monitor.description,
|
||||
interval: monitor.interval,
|
||||
notifications: monitor.notifications
|
||||
};
|
||||
const res = await axiosInstance.post(
|
||||
`/monitors/edit/${monitor._id}`,
|
||||
|
||||
@@ -31,6 +31,9 @@
|
||||
.account .MuiButtonGroup-root button {
|
||||
border-color: var(--env-var-color-16);
|
||||
}
|
||||
.account button{
|
||||
height: 34px;
|
||||
}
|
||||
.account [class$="-form"] {
|
||||
width: inherit;
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
/* ///// */
|
||||
.login-page
|
||||
.MuiStack-root:not(:has(> .MuiButtonBase-root))
|
||||
span:not(.MuiTypography-root) {
|
||||
span:not(.MuiTypography-root):not(.field-required) {
|
||||
color: var(--env-var-color-3);
|
||||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
|
||||
@@ -375,7 +375,7 @@ const Configure = () => {
|
||||
<Button
|
||||
level="primary"
|
||||
label="Save"
|
||||
sx={{ px: theme.gap.ml }}
|
||||
sx={{ px: theme.gap.large }}
|
||||
onClick={handleSubmit}
|
||||
/>
|
||||
</Stack>
|
||||
|
||||
@@ -110,7 +110,7 @@ const Settings = () => {
|
||||
</Box>
|
||||
</Stack>
|
||||
<Stack direction="row" justifyContent="flex-end">
|
||||
<Button level="primary" label="Save" />
|
||||
<Button level="primary" label="Save" sx={{ px: theme.gap.large }} />
|
||||
</Stack>
|
||||
</form>
|
||||
</Box>
|
||||
|
||||
Reference in New Issue
Block a user