Skip to content

Commit 942ed7b

Browse files
committed
chore: update sorting
1 parent 1f409be commit 942ed7b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

www/pages/_layout.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393

9494
<nav
9595
aria-label="Primary navigation"
96-
class="animate-kids fade-in-y mx-auto flex h-header-height max-w-content items-center justify-between px-page-gutter"
96+
class="flex justify-between items-center mx-auto animate-kids fade-in-y h-header-height max-w-content px-page-gutter"
9797
style="--from: -10px; --delay: 5"
9898
>
9999
<a href="#" aria-label="Goto top of the page">
@@ -133,7 +133,7 @@
133133

134134
<a
135135
href="https://github.com/barelyhuman/goblin"
136-
class="flex items-center gap-1.5 rounded px-1 py-0.5 text-sm font-medium text-subtle transition hover:bg-surface hover:text-text"
136+
class="flex gap-1.5 items-center px-1 py-0.5 text-sm font-medium rounded transition text-subtle hover:bg-surface hover:text-text"
137137
>
138138
<svg
139139
xmlns="http://www.w3.org/2000/svg"
@@ -154,13 +154,13 @@
154154

155155
<main id="content" class="mx-auto max-w-content px-page-gutter">
156156
<section
157-
class="animate-kids fade-in-y flex min-h-content flex-col justify-center space-y-6 sm:space-y-10"
157+
class="flex flex-col justify-center space-y-6 animate-kids fade-in-y min-h-content sm:space-y-10"
158158
style="--from: 20px"
159159
>
160160
<h1 class="text-4xl font-bold tracking-tight sm:text-6xl">
161161
Golang binaries in a curl, built by
162162
<span
163-
class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent"
163+
class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-secondary"
164164
>goblins</span
165165
>
166166
</h1>
@@ -171,14 +171,14 @@ <h1 class="text-4xl font-bold tracking-tight sm:text-6xl">
171171

172172
<div style="--delay: 1" class="relative">
173173
<pre><code class="language-command">curl -sf http://goblin.run/github.com/rakyll/hey | sh</code></pre>
174-
<div class="absolute inset-y-0 right-3 flex items-center">
174+
<div class="flex absolute inset-y-0 right-3 items-center">
175175
<button
176176
@click="() => {
177177
$data.copied = true
178178
setTimeout(() => { $data.copied = false }, 1500)
179179
$clipboard('curl -sf http://goblin.run/github.com/rakyll/hey | sh')
180180
}"
181-
class="flex h-7 w-7 cursor-copy items-center justify-center rounded bg-base text-subtle shadow transition-all hover:text-text hover:shadow-md"
181+
class="flex justify-center items-center w-7 h-7 rounded shadow transition-all cursor-copy bg-base text-subtle hover:text-text hover:shadow-md"
182182
>
183183
<template x-if="$data.copied">
184184
<svg
@@ -226,15 +226,15 @@ <h1 class="text-4xl font-bold tracking-tight sm:text-6xl">
226226
<div style="--delay: 2">
227227
<a
228228
href="#introduction"
229-
class="inline-flex rounded-md bg-gradient-to-br from-primary to-secondary px-6 py-3 text-sm font-semibold text-surface transition-shadow hover:shadow"
229+
class="inline-flex px-6 py-3 text-sm font-semibold bg-gradient-to-br rounded-md transition-shadow from-primary to-secondary text-surface hover:shadow"
230230
>Get Started</a
231231
>
232232
</div>
233233
</section>
234234

235235
<article id="introduction">
236236
<p
237-
class="rounded-md border border-primary bg-primary/10 p-3 text-sm font-medium text-primary sm:p-6"
237+
class="p-3 text-sm font-medium rounded-md border border-primary bg-primary/10 text-primary sm:p-6"
238238
>
239239
If you get value from using Goblin, please consider
240240
<a href="https://github.com/sponsors/barelyhuman" class="link"
@@ -247,15 +247,15 @@ <h1 class="text-4xl font-bold tracking-tight sm:text-6xl">
247247
</main>
248248

249249
<footer class="mx-auto mt-page-top max-w-content px-page-gutter">
250-
<div class="flex items-center justify-between border-t py-6 gap-3">
250+
<div class="flex gap-3 justify-between items-center py-6 border-t">
251251
<a
252252
href="https://github.com/barelyhuman/goblin"
253-
class="text-sm text-subtle transition hover:text-text"
253+
class="text-sm transition text-subtle hover:text-text"
254254
>View source on GitHub</a
255255
>
256256

257257
<p
258-
class="cursor-default rounded border border-primary bg-primary/10 px-1.5 py-0.5 font-mono text-sm text-primary"
258+
class="px-1.5 py-0.5 font-mono text-sm rounded border cursor-default border-primary bg-primary/10 text-primary"
259259
>
260260
<span x-text="hits">0</span>&nbsp;hits
261261
</p>

0 commit comments

Comments
 (0)