Fixed missing gradient on normal users.

This commit is contained in:
flash 2024-06-24 22:35:29 +00:00
parent f0dedbefae
commit ec00a19d79

View file

@ -137,7 +137,7 @@ const MamiSidebarPanelUsersEntry = function(info) {
updateAvatar();
const setColour = value => {
colour = value;
colour = value === 'inherit' ? '#fff' : value;
html.style.backgroundColor = colour;
nameElem.style.color = colour;
};