Skip to content

Commit

Permalink
lower the size of logo on login
Browse files Browse the repository at this point in the history
  • Loading branch information
alexevladgabriel committed Apr 12, 2024
1 parent d52cb4c commit af4d1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/scripts/components/auth/LoginFormContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default forwardRef<HTMLFormElement, Props>(({ title, ...props }, ref) =>
<Form {...props} ref={ref}>
<div css={tw`md:flex w-full bg-white shadow-lg rounded-lg p-6 md:pl-0 mx-1`}>
<div css={tw`flex-none select-none mb-6 md:mb-0 self-center p-6`}>
<img src={'/pelican.svg'} css={tw`block w-48 md:w-64 mx-auto`} />
<img src={'/pelican.svg'} css={tw`block w-48 md:w-56 mx-auto`} />
</div>
<div css={tw`flex-1`}>{props.children}</div>
</div>
Expand Down

0 comments on commit af4d1d1

Please sign in to comment.