Skip to content

Commit

Permalink
format && fix footer fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
Parsifa1 committed Aug 27, 2024
1 parent 5f625e5 commit 0e5b238
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/astro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ jobs:
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: 'blog' # e.g. 'my-project'
directory: 'dist' # e.g. 'dist'
projectName: "blog" # e.g. 'my-project'
directory: "dist" # e.g. 'dist'
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ const { noMarginTop = false } = Astro.props;

<style>
div {
@apply font-code text-gray-base;
@apply font-code text-gray-base text-base;
}
a {
@apply text-skin-base;
@apply text-skin-base text-base;
}
svg {
@apply inline-block h-6 w-6 fill-skin-base group-hover:fill-skin-accent;
Expand Down
12 changes: 4 additions & 8 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,10 @@ const socialImageURL = new URL(
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap"
rel="stylesheet"
/>
{
pubDatetime && (
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap"
rel="stylesheet"
/>
)
}
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap"
rel="stylesheet"
/>

<meta name="theme-color" content="" />

Expand Down

0 comments on commit 0e5b238

Please sign in to comment.