Skip to content

Commit

Permalink
style: fixes css and footer
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhall1515 committed Apr 21, 2024
1 parent daff995 commit b458002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@

@layer utilities {
.pxPage {
@apply m:px-[--page-x-spacing] px-6;
@apply px-6 m:px-[--page-x-spacing];
}

.pxPageTwo {
@apply m:px-[--page-x-spacing2] px-6;
@apply px-6 m:px-[--page-x-spacing2];
}

.checkBox + span {
Expand Down
2 changes: 1 addition & 1 deletion components/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Footer() {
<span className="mb-6 block text-2xl font-extrabold">
{env.NEXT_PUBLIC_SITE_NAME}
</span>
<div className="m:flex-row flex w-full flex-col items-start justify-between gap-6">
<div className="flex w-full flex-col items-start justify-between gap-6 m:flex-row">
<div className="!w-[10rem] flex-shrink-0 text-sm text-black">
@ {year}{" "}
<a href="/" className="ml-1 hover:underline">
Expand Down

0 comments on commit b458002

Please sign in to comment.