mui styling (#221)

This commit is contained in:
Michael Quigley 2024-10-21 13:55:29 -04:00
parent b9609f1097
commit 7571a38b99
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 8 additions and 1 deletions

View File

@ -69,7 +69,6 @@ const AgentUi = () => {
}
const releaseAccess = (opts) => {
console.log("opts", opts);
api.agentReleaseAccess(opts, (err, data) => {
console.log(data);
});

View File

@ -11,9 +11,17 @@ export const themeOptions = {
root: ({theme}) => theme.unstable_sx({
mt: 5,
p: 2.5,
borderRadius: 2,
}),
}
},
MuiAppBar: {
styleOverrides: {
root : ({theme}) => theme.unstable_sx({
borderRadius: 2,
}),
}
}
},
palette: {
mode: 'light',