Skip to content

Commit a7cee9c

Browse files
authored
update deploy example styles
1 parent b8a882c commit a7cee9c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

examples/deploy.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,16 @@ const Changelog = ({
8787
{repo}@{meta.base}...{meta.head}
8888
</title>
8989
</Helmet>
90-
<div class={tw`font-mono m-8`}>
91-
<h1 class={tw`text-4xl text-gray-800 font-semibold`}>
92-
± {repo}@{meta.base}...{meta.head}
90+
<div class={tw`font-mono p-12`}>
91+
<h1 class={tw`text-5xl text-gray-800 font-semibold`}>
92+
<span class={tw`select-none mr-2`}>±</span>
93+
{repo}@{meta.base}...{meta.head}
9394
</h1>
94-
<ul class={tw`text-lg text-gray-700 font-medium p-8`}>
95+
<ul class={tw`text-lg text-gray-700 font-medium py-8`}>
9596
{commits.map(({ header, shortSha }) => (
9697
<li>
97-
• [{shortSha.toUpperCase()}] {header}
98+
<span class={tw`select-none mr-2`}></span>
99+
[{shortSha.toUpperCase()}] {header}
98100
</li>
99101
))}
100102
</ul>

0 commit comments

Comments
 (0)