diff --git a/BTCPayServer/Views/Stores/SetupLightningNode.cshtml b/BTCPayServer/Views/Stores/SetupLightningNode.cshtml index 3f81d78b6..b70bbd90b 100644 --- a/BTCPayServer/Views/Stores/SetupLightningNode.cshtml +++ b/BTCPayServer/Views/Stores/SetupLightningNode.cshtml @@ -1,7 +1,7 @@ @model LightningNodeViewModel @{ Layout = "_LayoutWalletSetup.cshtml"; - ViewData.SetActivePageAndTitle(StoreNavPages.Index, "Configure your Lightning node", Context.GetStoreData().StoreName); + ViewData.SetActivePageAndTitle(StoreNavPages.Index, "Connect to a Lightning node", Context.GetStoreData().StoreName); } @section Navbar { @@ -59,14 +59,14 @@ list-style: none; padding-left: 0; } - #CustomSetup ul li code { + #CustomSetup ul li code, #CustomSetup ul li pre { color: var(--btcpay-code-color); } - #CustomSetup ul li > code { + #CustomSetup ul li > code, #CustomSetup ul pre { display: block; color: var(--btcpay-code-color); background: var(--btcpay-code-bg); - margin: .5rem 0; + margin: .25rem 0; padding: .75rem 1rem; border-radius: .25rem; } @@ -74,9 +74,9 @@