Skip to content

Commit

Permalink
fix header display breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
pantyetta committed Nov 23, 2024
1 parent 56934df commit d2f2032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default component$(() => {
>
<div
class={css({
display: { md: "flex", base: "none" },
display: { lg: "flex", base: "none" },
justifyContent: "space-between",
fontWeight: 300,
fontSize: 20,
Expand Down Expand Up @@ -77,7 +77,7 @@ export default component$(() => {
</div>
<div
class={css({
display: { md: "none", base: "inline-block" },
display: { lg: "none", base: "inline-block" },
marginY: "40px",
position: "relative",
marginLeft: "2em",
Expand Down

0 comments on commit d2f2032

Please sign in to comment.