Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/layouts/CompetitionLayout/CompetitionLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export function CompetitionLayout() {
const Header = (
<nav className="z-10 flex justify-center w-full shadow-md shadow-tertiary-dark print:hidden bg-panel">
<Container className="justify-between md:flex-row">
<div className="flex">
<div className="flex w-full flex-wrap p-2">
{tabs.map((i) => (
<StyledNavLink
key={i.href}
className={classNames({
className={classNames('basis-1/2 type-body-sm md:basis-auto md:type-body', {
'hidden md:block': i.hiddenOnMobile,
})}
to={i.href}
Expand Down
Loading