fix: colors
All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 13m53s

This commit is contained in:
Damien 2025-02-27 02:37:56 -05:00
parent a9afbe44dd
commit 13e22c9f34

View File

@ -156,7 +156,7 @@ const SocialIcons: React.FC<SocialIconsProps> = ({
// Handle name submission
const handleSubmit = () => {
if (name === 'cali-coast') {
window.location.href = 'https://0.0.0.0/';
window.location.href = 'https://calicoastrp.d4m13n.dev/';
} else {
setError(true);
}
@ -242,11 +242,30 @@ const SocialIcons: React.FC<SocialIconsProps> = ({
onChange={(e) => setName(e.target.value)}
error={error}
helperText={error ? "Invalid customer name" : ""}
sx={{
'& .MuiOutlinedInput-root': {
'&.Mui-focused fieldset': {
borderColor: '#4fd1ff',
},
},
'& .MuiInputLabel-root.Mui-focused': {
color: '#4fd1ff',
},
}}
/>
</DialogContent>
<DialogActions>
<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
</Button>
</DialogActions>