bug fixes

This commit is contained in:
Adam Matthiesen 2024-01-17 02:55:43 -08:00
parent 3f8cddfa4e
commit 5ec328d964
3 changed files with 4 additions and 3 deletions

View File

@ -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",
@ -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",

View File

@ -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;

View File

@ -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;