Skip to content

Commit 5ebc616

Browse files
authored
Changed url text color (#16)
Removed padding from `code` text span. Also fixed a couple of minor details in the `cache-your-actions` post. - Link to other post was broken - A broken symbol was at the bottom of the post
1 parent c3c7da4 commit 5ebc616

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/_includes/styles/tailwind.css

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
}
1212

1313
.blog-content {
14-
@apply prose lg:prose-xl text-primary-content prose-headings:text-transparent
15-
prose-headings:bg-clip-text prose-headings:bg-gradient-to-r
16-
prose-headings:from-accent prose-headings:to-base-content prose-strong:text-accent;
14+
@apply prose lg:prose-xl text-primary-content prose-headings:text-transparent prose-headings:bg-clip-text prose-headings:bg-gradient-to-r prose-headings:from-accent prose-headings:to-base-content prose-strong:text-accent prose-a:text-secondary prose-code:px-0;
1715
}
1816

1917
#main-content {

src/blog/2024-05-06-cache-your-actions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
---
1010
If your actions have a long installation step (or very big `node_modules`) you can cache the installation step using the GitHub action [`actions/cache`](https://github.com/actions/cache).
1111

12-
This is very useful for cases where you use a [matrix to run multiple tests](../run-all-your-tests-concurrently).
12+
This is very useful for cases where you use a [matrix to run multiple tests](./run-all-your-tests-concurrently).
1313

1414
![](https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExOTBqbThwcnI5a3R3NHJ3ZzdwZ3ZjNXc0ZnM1bHBqM3JoeHhqanN6byZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/WSy0SI6qipEDJogaGD/giphy.gif)
1515

@@ -49,4 +49,4 @@ We also don’t want to cache the dependencies for a different OS, so we add to
4949

5050
And that’s all! Now you can cache all your actions.
5151

52-
Remember to [checkout the examples for your specific package manager](https://github.com/actions/cache/blob/main/examples.md).![](#)
52+
Remember to [checkout the examples for your specific package manager](https://github.com/actions/cache/blob/main/examples.md).

0 commit comments

Comments
 (0)