Skip to content

Commit 0fe7e79

Browse files
authored
Merge branch 'main' into docs/v6-updates
2 parents d00dc52 + 1f6ed18 commit 0fe7e79

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@kobalte/core": "0.13.7",
5656
"@octokit/openapi-types": "23.0.1",
5757
"@tailwindcss/typography": "0.5.16",
58-
"astro": "5.1.9",
58+
"astro": "5.1.10",
5959
"astro-icon": "1.1.5",
6060
"class-variance-authority": "0.7.1",
6161
"clsx": "2.1.1",

pnpm-lock.yaml

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/DownloadButton.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const { item } = Astro.props;
1414
<a
1515
href={item.url}
1616
class:list={[
17+
"flex items-center",
1718
"mb-3 px-4 py-3 mr-4",
1819
"font-semibold rounded-md",
1920
"bg-gitify-download-rest",

src/components/LatestRelease.astro

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,13 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
109109
</div>
110110
<div class="w-80 flex flex-col gap-2">
111111
<div>
112-
Latest version: <a href={URLs.GITHUB.LATEST_RELEASE}>{version}</a>
112+
Latest version:{" "}
113+
<a
114+
class="text-gitify-download-link"
115+
href={URLs.GITHUB.LATEST_RELEASE}
116+
>
117+
{version}
118+
</a>
113119
</div>
114120
<div>Released on: {releaseDate}</div>
115121
{downloadLinks.alt.length > 0 && (

0 commit comments

Comments
 (0)