Skip to content

Commit

Permalink
πŸ› FIX: fix layout gap in between header and form section
Browse files Browse the repository at this point in the history
  • Loading branch information
All-Khwarizmi committed Mar 19, 2024
1 parent c369ac5 commit 508a953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Main() {
isTranslations={isTranslations}
/>

<section className="h-full w-full flex flex-col items-center md:justify-center gap-5 ">
<section className="h-full w-full flex flex-col items-center justify-start gap-5 ">
{isLoading ? <LoadingGlass /> : null}

<TranslationTable
Expand Down
2 changes: 1 addition & 1 deletion src/components/TranslationDirection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function TitleAndDirection({
isTranslations,
}: TranslationDirectionProps) {
return (
<section className="flex flex-col w-full h-full justify-end md:justify-center items-center gap-5 ">
<section className="flex flex-col w-full h-full justify-end items-center gap-5 ">
<Title title="Dico" />
<div className="grid place-items-center w-full ">
{isFr ? (
Expand Down

0 comments on commit 508a953

Please sign in to comment.