0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-12-16 20:54:17 +09:00

Fix status badge & name positioning

This commit is contained in:
2021-05-30 18:26:40 +09:00
parent 8406afaa29
commit a52d5a2074
2 changed files with 6 additions and 9 deletions

View File

@@ -16,6 +16,7 @@ const App = () => {
const status = data.members && data.members[0].status;
return (
<>
<div className="z-50 transform translate-x-96 -translate-y-10 w-5">
{
(() => {
if (status == "online"){
@@ -29,6 +30,7 @@ const App = () => {
}
})()
}
</div>
</>
)
}