fixed cookie pop up UI highlights

This commit is contained in:
2ManyProjects 2025-05-08 22:39:43 -05:00
parent bd6c90ab9d
commit c35adf0498
2 changed files with 4 additions and 4 deletions

View file

@ -160,7 +160,7 @@ const CookieConsentPopup = () => {
</Button>
<Box>
<Button
variant="outlined"
variant="contained"
onClick={handleSave}
sx={{ mr: 1 }}
size="small"
@ -168,7 +168,7 @@ const CookieConsentPopup = () => {
Save Preferences
</Button>
<Button
variant="contained"
variant="outlined"
onClick={handleAcceptAll}
size="small"
>

View file

@ -155,8 +155,8 @@ const CookieSettingsButton = ({ variant = 'text', icon = false, label = 'Cookie
<Button onClick={handleNecessaryOnly} color="inherit">Necessary Only</Button>
<Box sx={{ flexGrow: 1 }} />
<Button onClick={handleClose}>Cancel</Button>
<Button onClick={handleSave} variant="outlined">Save Preferences</Button>
<Button onClick={handleAcceptAll} variant="contained">Accept All</Button>
<Button onClick={handleSave} variant="contained">Save Preferences</Button>
<Button onClick={handleAcceptAll} variant="outlined">Accept All</Button>
</DialogActions>
</Dialog>
);