Skip to content

Commit

Permalink
web-wallet: Fix content alignment regression
Browse files Browse the repository at this point in the history
Resolves #1988
  • Loading branch information
nortonandreev committed Jul 22, 2024
1 parent 18c9f34 commit 9d02259
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,7 @@
.transactions-list {
display: grid;
grid-template-columns: max-content auto;
&__loading-container {
margin: 1em auto;
}
width: 100%;
&__term {
background-color: var(--background-color-alt);
Expand All @@ -189,6 +186,10 @@
text-transform: uppercase;
}
&__loading-container {
margin: 1em auto;
}
&__datum {
grid-column: 2;
line-height: 150%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

exports[`Transactions > renders the correct amount of Transactions, as the limit supplied 1`] = `
<article
class="transactions svelte-13w6rnl"
class="transactions svelte-1xfwm7e"
>
<header
class="transactions__header svelte-13w6rnl"
class="transactions__header svelte-1xfwm7e"
>
<h3
class="h4"
Expand Down Expand Up @@ -256,10 +256,10 @@ exports[`Transactions > renders the correct amount of Transactions, as the limit

exports[`Transactions > renders transactions correctly when items are fulfilled 1`] = `
<article
class="transactions svelte-13w6rnl"
class="transactions svelte-1xfwm7e"
>
<header
class="transactions__header svelte-13w6rnl"
class="transactions__header svelte-1xfwm7e"
>
<h3
class="h4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,10 @@ exports[`Dashboard > should render a card when there is an error getting transac
</article>
<article
class="transactions svelte-13w6rnl"
class="transactions svelte-1xfwm7e"
>
<header
class="transactions__header svelte-13w6rnl"
class="transactions__header svelte-1xfwm7e"
>
<h3
class="h4"
Expand Down Expand Up @@ -719,10 +719,10 @@ exports[`Dashboard > should render the dashboard page and show a throbber while
</article>
<article
class="transactions svelte-13w6rnl"
class="transactions svelte-1xfwm7e"
>
<header
class="transactions__header svelte-13w6rnl"
class="transactions__header svelte-1xfwm7e"
>
<h3
class="h4"
Expand Down Expand Up @@ -1110,10 +1110,10 @@ exports[`Dashboard > should render the dashboard page with the transactions afte
</article>
<article
class="transactions svelte-13w6rnl"
class="transactions svelte-1xfwm7e"
>
<header
class="transactions__header svelte-13w6rnl"
class="transactions__header svelte-1xfwm7e"
>
<h3
class="h4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ exports[`Dashboard > should render the transactions page 1`] = `
</article>
<article
class="transactions svelte-13w6rnl"
class="transactions svelte-1xfwm7e"
>
<header
class="transactions__header svelte-13w6rnl"
class="transactions__header svelte-1xfwm7e"
>
<h3
class="h4"
Expand Down
1 change: 1 addition & 0 deletions web-wallet/src/style/dusk-components/suspense.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.dusk-suspense {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--default-gap);

Expand Down

0 comments on commit 9d02259

Please sign in to comment.