Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanharikr committed Sep 23, 2024
1 parent e7d2a37 commit 49c99d2
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,11 @@
<div class="bg-charcoal lg:hidden absolute left-0 top-12 w-full px-4 z-50 min-w-[320px]">
<ul class="flex flex-col gap-y-3 pb-4 text-base">
<li class="nav-link relative sm:hidden">
<a href="https://hello.dev" target="_blank" class="inline-flex items-center font-medium">
<a
href="https://hello.dev"
target="_blank"
class="inline-flex items-center font-medium"
>
hello.dev
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down Expand Up @@ -1047,7 +1051,8 @@
<div class="break-inside-avoid-column">
<button
class="inline-flex items-center space-x-2"
on:click={() => (states.dropdowns.protocolParams = !states.dropdowns.protocolParams)}
on:click={() =>
(states.dropdowns.protocolParams = !states.dropdowns.protocolParams)}
>
<h1 class="font-semibold text-lg inline-block">Protocol Params</h1>
<svg
Expand Down Expand Up @@ -1480,7 +1485,8 @@
class="hello-btn-black-and-static w-full flex mt-4"
class:hello-btn-loader={continueWithHelloAjax}
disabled={continueWithHelloAjax}
class:hello-btn-hover-flare={darkMode}>ō&nbsp;&nbsp;&nbsp;Continue with Hellō</button
class:hello-btn-hover-flare={darkMode}
>ō&nbsp;&nbsp;&nbsp;Continue with Hellō</button
>
</div>
</div>
Expand Down Expand Up @@ -1546,7 +1552,8 @@
{#if dropdown.authorize}
<p class="p-4 break-words">
<span class:flash={copyTooltip.authorize} class="text-sm">{result.authorize}</span
<span class:flash={copyTooltip.authorize} class="text-sm"
>{result.authorize}</span
>
</p>
{/if}
Expand Down

0 comments on commit 49c99d2

Please sign in to comment.