Skip to content

Commit

Permalink
fix: decrease paddings on lg
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Oct 31, 2023
1 parent 4bcc651 commit ba96cc4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion public/css/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -1874,7 +1874,7 @@ select {
width: 66.666667%;
}

.lg\:p-12 {
.lg\:p-8 {
padding: 3rem;
}

Expand Down
2 changes: 1 addition & 1 deletion views/404.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{define "body"}}

<div
class="bg-white rounded-md shadow px-4 lg:p-12 dark:bg-surface-02dp"
class="bg-white rounded-md shadow px-4 lg:p-8 dark:bg-surface-02dp"
>
<h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">404 Page Not Found</h3>
<p class="leading-relaxed dark:text-neutral-400">
Expand Down
8 changes: 4 additions & 4 deletions views/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{define "body"}}

<div
class="bg-white rounded-md shadow p-4 lg:p-12 mb-10 dark:bg-surface-02dp"
class="bg-white rounded-md shadow p-4 lg:p-8 mb-10 dark:bg-surface-02dp"
>
<h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">tl;dr</h3>
<p class="leading-relaxed dark:text-neutral-400">
Expand All @@ -11,7 +11,7 @@ <h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">tl;dr</h3>
</div>

<div
class="bg-white rounded-md shadow p-4 lg:p-12 mb-10 dark:bg-surface-02dp"
class="bg-white rounded-md shadow p-4 lg:p-8 mb-10 dark:bg-surface-02dp"
>
<h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">How to connect your app?</h3>
<ol class="list-decimal list-inside leading-relaxed dark:text-neutral-400">
Expand Down Expand Up @@ -41,7 +41,7 @@ <h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">How to connect
</div>

<div
class="bg-white rounded-md shadow p-4 lg:p-12 mb-10 dark:bg-surface-02dp"
class="bg-white rounded-md shadow p-4 lg:p-8 mb-10 dark:bg-surface-02dp"
>

<h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">FAQs</h3>
Expand Down Expand Up @@ -92,7 +92,7 @@ <h4 class="font-bold text-l font-headline mt-6 dark:text-white">Can I run my own
</div>

<div
class="bg-white rounded-md shadow p-4 lg:p-12 dark:bg-surface-02dp"
class="bg-white rounded-md shadow p-4 lg:p-8 dark:bg-surface-02dp"
>
<h3 class="font-bold text-2xl font-headline mb-4 dark:text-white">For developers</h3>
<p class="mb-1 leading-relaxed dark:text-neutral-400">
Expand Down
2 changes: 1 addition & 1 deletion views/apps/create.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{define "body"}}

<div
class="bg-white rounded-md shadow p-4 lg:p-12 dark:bg-surface-02dp"
class="bg-white rounded-md shadow p-4 lg:p-8 dark:bg-surface-02dp"
>
<h2 class="font-bold text-2xl font-headline mb-2 dark:text-white">{{.Name}}</h2>

Expand Down
2 changes: 1 addition & 1 deletion views/backends/lnd/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{define "body"}}

<div class="bg-white rounded-md shadow p-4 lg:p-12 mb-10 dark:bg-surface-02dp">
<div class="bg-white rounded-md shadow p-4 lg:p-8 mb-10 dark:bg-surface-02dp">
<div class="text-center">
<img alt="Nostr Wallet Connect logo" class="mx-auto mb-4" width="128" height="120"
src="/public/images/nwc-logo.svg" />
Expand Down

0 comments on commit ba96cc4

Please sign in to comment.