Set text color of notif box correctly; flip Dinnerbone user page correctly

This commit is contained in:
Riley L. 2024-11-04 10:47:17 +01:00
parent a432f03bee
commit 99bc149756
2 changed files with 6 additions and 1 deletions

View file

@ -64,7 +64,8 @@ local function get_user_theme(username)
end
c = c .. "\n}"
elseif username == "Dinnerbone" then
c = "html { transform: scale(-1); } "
c = "html { transform: scale(-1); bottom: 0; position: absolute; right: 0;
width: 100%; } "
end
return c
end

View file

@ -72,6 +72,10 @@ nav> :last-child {
border-radius: 4px;
}
.notif > * {
color: black;
}
.notif.error {
background-color: rgb(118, 13, 13);
}