From c20d358f146ba9ba097b9338ff776de3c698fd3e Mon Sep 17 00:00:00 2001 From: Talgat The Random <36820511+RND332@users.noreply.github.com> Date: Sun, 16 Jun 2024 15:18:45 +0300 Subject: [PATCH] chore: Update styles in Layout.astro for better image display --- src/layouts/Layout.astro | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index ed8d605..5cba785 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -35,7 +35,7 @@ const pages: Array = [ src="https://www.googletagmanager.com/gtag/js?id=G-VSD6GSYPH2" > - +
@@ -53,7 +53,7 @@ const pages: Array = [ currentPage == undefined ? "who" : currentPage; const isCurrentPage = currentPageId === page.id; - let styles = "w-full px-2 min-w-[48px] "; + let styles = "w-full "; if (index % 3 === 0) { styles += "border-r border-[#30363d] "; } else if (index % 3 === 1) { @@ -65,13 +65,13 @@ const pages: Array = [ } return ( -
  • +
  • -
    {page.title}
    +
    {page.title}
  • );