Skip to content

Commit

Permalink
Reduce space between heading and button
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellemaxwell committed Mar 14, 2024
1 parent b840481 commit 6dab304
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions pkg/web/static/styles/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -1847,16 +1847,21 @@ html {
column-gap: 0.25rem;
}

.gap-x-12 {
-moz-column-gap: 3rem;
column-gap: 3rem;
}

.gap-x-4 {
-moz-column-gap: 1rem;
column-gap: 1rem;
}

.gap-x-8 {
-moz-column-gap: 2rem;
column-gap: 2rem;
}

.gap-x-6 {
-moz-column-gap: 1.5rem;
column-gap: 1.5rem;
}

.overflow-x-auto {
overflow-x: auto;
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/web/templates/transactions.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{{ define "content" }}

<section class="mx-8 py-14 overflow-x-auto">
<section class="mb-12 flex items-center gap-x-12">
<section class="mb-12 flex items-center gap-x-6">
<h1 class="font-bold sm:text-2xl">Transaction Inbox</h1>
<div class="flex items-center gap-x-1">
<button class="btn btn-sm bg-[#55ACD8] text-white hover:bg-[#55ACD8]/90">Send New Secure Envelope</button>
Expand Down

0 comments on commit 6dab304

Please sign in to comment.