Skip to content

Commit

Permalink
releasef center the content of the widget
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Feb 27, 2024
1 parent 3dd5a3a commit 2f394e4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions frontend/src/containers/Profile/ObsWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,15 @@ export const ObsWidget = () => {

return (
<div>
{!nologo ? <div>
<Typography variant="h6">PVPQ.NET</Typography>
<br />
</div> : null}
{/* {nologo ? null : (
<Typography variant="h6">PVPQ.NET</Typography>
<br /> */}
<div className={`flex ${flex} gap-1`}>{contentList}</div>
<div className={`flex ${flex} gap-1 items-center justify-center`}>
{!nologo ? (
<div>
<Typography variant="h6">PVPQ.NET</Typography>
<br />
</div>
) : null}
{contentList}
</div>
</div>
);
};

0 comments on commit 2f394e4

Please sign in to comment.