Skip to content

Commit

Permalink
UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Feb 14, 2025
1 parent 113eeca commit dd1ce2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions BTCPayApp.UI/Layout/SimpleLayout.razor.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#SimpleLayout {
--logo-height: 6rem;
--padding-vertical: 12.5vh;

display: flex;
Expand All @@ -16,7 +15,7 @@
}
::deep .logo {
display: block;
height: var(--logo-height);
height: 6rem;
margin-left: auto;
margin-right: auto;
margin-bottom: 1.5rem;
Expand Down
2 changes: 1 addition & 1 deletion BTCPayApp.UI/Pages/SignedOut/SignedOutBasePage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
{
param["Email"] = response.Email;
param["ResetCode"] = response.PasswordSetCode;
param["Mode"] = ForgotPasswordPage.PasswordMode.Set.ToString();
param["Mode"] = nameof(ForgotPasswordPage.PasswordMode.Set);
var forgotPassword = NavigationManager.GetUriWithQueryParameters(Routes.ForgotPassword, param);
NavigationManager.NavigateTo(forgotPassword);
}
Expand Down
2 changes: 1 addition & 1 deletion BTCPayApp.UI/Pages/Wallet/SeedConfirmationPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.ask {
display: grid;
grid-auto-flow: column;
grid-template-rows: repeat(3, 50%);
grid-template-rows: repeat(3, auto);
grid-template-columns: repeat(2, 50%);
gap: var(--btcpay-space-m);
margin-right: 2em;
Expand Down

0 comments on commit dd1ce2c

Please sign in to comment.