Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryczko committed May 7, 2022
1 parent d8aa07b commit b53cf48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/Components/Logo/Logo.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import clsx from 'clsx';
import { Link } from 'react-router-dom';

interface LogoProps {
Expand All @@ -8,7 +9,10 @@ function Logo({ classNames = '' }: LogoProps) {
return (
<Link
to={'/'}
className={`flex items-center font-serif text-2xl text-zinc-600 ${classNames}`}
className={clsx(
'flex items-center font-serif text-2xl text-zinc-600',
classNames
)}
>
Employee Pulse
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/Layouts/GlobalLoader/GlobalLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function GlobalLoader() {
<motion.div
exit={{ opacity: 0 }}
transition={{ duration: 0.6, type: 'tween' }}
className="bg-zinc-100 w-screen h-screen fixed top-0 left-0 z-50 tran"
className="bg-zinc-100 w-screen h-screen fixed top-0 left-0 z-50"
>
<div className="fixed text-center left-[50%] top-[45%] -translate-x-[50%] -translate-y-[50%]">
<Logo classNames="text-6xl mb-10 leading-[80px]" />
Expand Down

0 comments on commit b53cf48

Please sign in to comment.