Skip to content

Commit

Permalink
use default tailwind value
Browse files Browse the repository at this point in the history
  • Loading branch information
supertong committed Nov 24, 2024
1 parent efb5652 commit 40b5775
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Header = () => {
return (
<nav>
<section className="bg-primary-main h-[300px] mb-[-188px]">
<div className="container h-[84px] py-[22px] px-6 mx-auto flex items-center justify-between">
<div className="container h-20 py-6 px-6 mx-auto flex items-center justify-between">
<Logo />
<div className="flex flex-1">
{shouldDisplayTestingMsg() && (
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/Header/SimplifiedHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { TestingInfo } from "../TestingInfo/TestingInfo";
export const SimplifiedHeader = () => {
return (
<nav>
<section className="bg-primary-main dark:bg-[#181818] h-[300px] mb-[-188px]">
<div className="container h-[84px] py-[22px] px-6 mx-auto flex items-center justify-between">
<section className="bg-primary-main h-[300px] mb-[-188px]">
<div className="container h-20 py-6 px-6 mx-auto flex items-center justify-between">
<Logo />
<div className="flex flex-1">
{shouldDisplayTestingMsg() && (
Expand Down

0 comments on commit 40b5775

Please sign in to comment.