fix: colors
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 13m53s
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 13m53s
This commit is contained in:
parent
a9afbe44dd
commit
13e22c9f34
@ -156,7 +156,7 @@ const SocialIcons: React.FC<SocialIconsProps> = ({
|
|||||||
// Handle name submission
|
// Handle name submission
|
||||||
const handleSubmit = () => {
|
const handleSubmit = () => {
|
||||||
if (name === 'cali-coast') {
|
if (name === 'cali-coast') {
|
||||||
window.location.href = 'https://0.0.0.0/';
|
window.location.href = 'https://calicoastrp.d4m13n.dev/';
|
||||||
} else {
|
} else {
|
||||||
setError(true);
|
setError(true);
|
||||||
}
|
}
|
||||||
@ -242,11 +242,30 @@ const SocialIcons: React.FC<SocialIconsProps> = ({
|
|||||||
onChange={(e) => setName(e.target.value)}
|
onChange={(e) => setName(e.target.value)}
|
||||||
error={error}
|
error={error}
|
||||||
helperText={error ? "Invalid customer name" : ""}
|
helperText={error ? "Invalid customer name" : ""}
|
||||||
|
sx={{
|
||||||
|
'& .MuiOutlinedInput-root': {
|
||||||
|
'&.Mui-focused fieldset': {
|
||||||
|
borderColor: '#4fd1ff',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'& .MuiInputLabel-root.Mui-focused': {
|
||||||
|
color: '#4fd1ff',
|
||||||
|
},
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
<DialogActions>
|
<DialogActions>
|
||||||
<Button onClick={() => setDialogOpen(false)}>Cancel</Button>
|
<Button onClick={() => setDialogOpen(false)}>Cancel</Button>
|
||||||
<Button onClick={handleSubmit} variant="contained" color="primary">
|
<Button
|
||||||
|
onClick={handleSubmit}
|
||||||
|
variant="contained"
|
||||||
|
sx={{
|
||||||
|
backgroundColor: '#4fd1ff',
|
||||||
|
'&:hover': {
|
||||||
|
backgroundColor: '#3bb8e5',
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
Submit
|
Submit
|
||||||
</Button>
|
</Button>
|
||||||
</DialogActions>
|
</DialogActions>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user