Skip to content

Commit db2de09

Browse files
committed
minor hotfixes
1 parent d9b6e2c commit db2de09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/global/navigation/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ export function AppSidebar() {
317317
</SidebarGroupContent>
318318
</SidebarGroup>
319319
</SidebarContent>
320-
<SidebarFooterComponent />
320+
{user?.userLevel !== 'ADMIN' && <SidebarFooterComponent />}
321321
<SidebarRail />
322322
</Sidebar>
323323
);

src/components/marketing/homepage/features/progression-box.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function ProgressionBentoBox() {
1111
initial={{ opacity: 0, y: 20 }}
1212
animate={{ opacity: 1, y: 0 }}
1313
transition={{ duration: 0.5 }}
14-
className="overflow-hidden absolute z-10 top-28 flex flex-col gap-4 w-full rounded-lg group-hover:!skew-y-2 group-hover:!top-[120px] group-hover:!-left-2 transition-all duration-300"
14+
className="overflow-hidden absolute z-10 top-28 flex flex-col gap-4 w-full rounded-lg transition-all duration-300"
1515
>
1616
<ProgressChart />
1717
</motion.div>
@@ -21,7 +21,7 @@ export default function ProgressionBentoBox() {
2121
initial={{ opacity: 0, y: 20 }}
2222
animate={{ opacity: 1, y: 0 }}
2323
transition={{ duration: 0.5 }}
24-
className="overflow-hidden absolute z-0 top-28 flex flex-col gap-4 w-full rounded-lg group-hover:!skew-y-2 transition-all duration-300"
24+
className="overflow-hidden absolute z-0 top-28 flex flex-col gap-4 w-full rounded-lg transition-all duration-300"
2525
style={{
2626
background:
2727
'radial-gradient(128% 107% at 100% 100%, #212121 0%, rgb(0,0,0) 77.61%)',

0 commit comments

Comments
 (0)