Skip to content

Commit cc2b7fb

Browse files
committed
feat: update header positioning
1 parent 89361c1 commit cc2b7fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Layout: FC<Props> = ({ children, setTodos, todos }) => {
2323
</Head>
2424
<section className="todoapp">
2525
<header className="header">
26-
<h1>{t('todos')}</h1>
26+
<h1 style={{ position: 'inherit' }}>{t('todos')}</h1>
2727
<NewTodo setTodos={setTodos} todos={todos} />
2828
</header>
2929
{children}

0 commit comments

Comments
 (0)