Product: PowerShell Universal
Version: 1.4.6
Hi, trying to change the top bar with the nav button to be red instead of blue. I’ve tried a custom stylesheet:
New-UDDashboard -Pages $pages -Stylesheets @('/assets/style.css')
.MuiAppBar-colorPrimary {
background-color: red;
}
This didn’t seem to do anything, so I tried with a New-UDStyle:
New-UDStyle -Style '.MuiAppBar-colorPrimary { background-color: red; }' -Content {
New-UDDashboard -Pages $pages
}
No change with this either. Any suggestions?
Thanks!