Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Adammatthiesen committed Jan 17, 2024
1 parent 3f8cddf commit 5ec328d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@matthiesenxyz/astro-ghostcms",
"description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content",
"version": "2.0.0",
"version": "2.0.1",
"author": "MatthiesenXYZ (https://matthiesen.xyz)",
"type": "module",
"license": "MIT",
Expand All @@ -14,6 +14,7 @@
},
"homepage": "https://github.com/MatthiesenXYZ/astro-ghostcms",
"exports": {
".": "./index.ts",
"./api": "./src/api/index.ts",
"./index.astro": "./src/routes/index.astro",
"./[slug].astro": "./src/routes/[slug].astro",
Expand Down
2 changes: 1 addition & 1 deletion src/components/AuthorList.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const { post, settings } = Astro.props as Props;

<style lang="scss">
@use "sass:color";
@import "/src/styles/variables";
@import "../styles/variables";
.author-avatar {
display: block;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion src/components/PostPreview.astro
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const { post, settings, index, isHome = false } = Astro.props as Props;

<style lang="scss" is:global>
@use "sass:color";
@import "/src/styles/variables";
@import "../styles/variables";
.post-card {
position: relative;
flex: 1 1 301px;
Expand Down

0 comments on commit 5ec328d

Please sign in to comment.