Skip to content

Commit

Permalink
fix: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vanessacor committed Jun 8, 2024
1 parent b5a4c03 commit 9d51c27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/BlogSideBar.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { getTags } from "../helpers/get-tags";
import { getTags } from "../helpers/getTags";
import TagItem from "./TagItem.astro";
const tags = await getTags()
Expand Down
4 changes: 2 additions & 2 deletions src/components/navigation/TagsMenu.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { getTags } from "../../helpers/get-tags";
import { getTags } from "../../helpers/getTags";
const tags = await getTags();
const tagsElement = tags.map((tag) => ({ label: tag, url: `/tags/${tag}` }));
Expand Down Expand Up @@ -63,6 +63,6 @@ const tagsElement = tags.map((tag) => ({ label: tag, url: `/tags/${tag}` }));
}

ul a {
color: var(--secondary-color)
color: var(--secondary-color);
}
</style>
3 changes: 1 addition & 2 deletions src/layouts/BlogLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ const { title } = Astro.props;
}
.page-container {
display: grid;
grid-template-columns: 80% 20%;
grid-template-columns: 70% 30%;
gap: var(--space-xxl);
justify-content: space-between;
}
}
</style>

0 comments on commit 9d51c27

Please sign in to comment.