Logout fix, mobile view fix

This commit is contained in:
mrfry 2022-03-14 21:38:50 +01:00
parent 57a7ab9fb7
commit 71aaebf05d
2 changed files with 8 additions and 1 deletions

View file

@ -196,8 +196,9 @@ function UserStatus({ userId, unreads, onClick }) {
Accept: 'application/json',
'Content-Type': 'application/json',
},
}).then(() => {
location.reload()
})
location.reload()
}}
>
<LogoutIcon size={28} />

View file

@ -35,6 +35,12 @@ body {
box-shadow: 0px 0px 29px 19px #222426;
}
@media screen and (max-width: 700px) {
#__next {
flex-flow: column;
}
}
img {
max-width: 90%;
}