Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
alipiry committed Feb 5, 2025
1 parent 2bf95d8 commit 61a298b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const eslintConfig = [
"next",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"prettier"
"prettier",
),
{
rules: {
Expand Down
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import 'tailwindcss';
@import "tailwindcss";

@plugin "@tailwindcss/typography";

Expand All @@ -12,4 +12,4 @@
--z-index-3: 3;
--z-index-4: 4;
--z-index-5: 5;
}
}
2 changes: 1 addition & 1 deletion src/ui/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import FooterContentContainer from "./footer-content-container";

export default function Footer() {
return (
<footer className="xs:my-8 mb-5 mt-10">
<footer className="xs:my-8 mt-10 mb-5">
<FooterContentContainer />
</footer>
);
Expand Down

0 comments on commit 61a298b

Please sign in to comment.