Skip to content

Commit

Permalink
feat: add responsiveness in about page
Browse files Browse the repository at this point in the history
  • Loading branch information
fbuireu committed May 6, 2024
1 parent 78556f4 commit 0c2b4c4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/articles/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import BaseLayout from "src/ui/components/templates/baseLayout/BaseLayout.astro"
import "./_article.css";
import { DEFAULT_DATE_FORMAT } from "src/consts";
import { slugify } from "src/ui/shared/utils/slugify";
import { ImageMetadata } from "astro";
import type { ImageMetadata } from "astro";
export const prerender = true;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/articles/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { slugify } from "@shared/utils/slugify";
import { DEFAULT_DATE_FORMAT } from "src/consts";
import "./_articles.css";
import horizontalArrow from "@assets/images/svg/left-arrow.svg";
import { ImageMetadata } from "astro";
import type { ImageMetadata } from "astro";
enum ArticleType {
DEFAULT = "default",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projects.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import BaseLayout from "@components/templates/baseLayout/BaseLayout.astro";
import { Image } from "astro:assets";
import ProjectSection from "@components/atoms/projectSection/ProjectSection.astro";
import { ImageMetadata } from "astro";
import type { ImageMetadata } from "astro";
const images = import.meta.glob<{ default: ImageMetadata }>("/src/assets/**/*.{jpeg,jpg,png,gif}");
---
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/molecules/cityCard/city-card.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
top: calc(var(--header-height) + 0.5rem);

@media (max-width: 960px) {
padding-inline: 1rem;
padding-inline: 1rem;
}
}

Expand Down

0 comments on commit 0c2b4c4

Please sign in to comment.