fix(ui): fix minor ui bugs

This commit is contained in:
shafin-r
2026-02-17 16:41:24 +06:00
parent b56642fda8
commit 626616c8b5
7 changed files with 19 additions and 21 deletions

View File

@ -24,10 +24,9 @@ export const Practice = () => {
const navigate = useNavigate();
const userXp = useExamConfigStore.getState().userXp;
console.log(userXp);
return (
<main className="h-fit max-w-7xl mx-auto px-8 sm:px-6 lg:px-8 py-8 space-y-4">
<header className="flex justify-between items-center">
<div className="px-8 py-8 space-y-4">
<header className="flex justify-between items-center ">
<div className="w-fit bg-linear-to-br from-purple-500 to-purple-600 p-3 rounded-2xl">
<BookOpen size={20} color="white" />
</div>
@ -136,6 +135,6 @@ export const Practice = () => {
</Card>
</div>
</section>
</main>
</div>
);
};