Skip to content

Commit

Permalink
AGDNS-2239 fix guide list padding
Browse files Browse the repository at this point in the history
  • Loading branch information
IldarKamalov committed Dec 4, 2024
1 parent 3895cfb commit 739ccfa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ NOTE: Add new changes BELOW THIS COMMENT.

### Fixed

- Setup guide styles in Firefox.
- Goroutine leak during the upstream DNS server test ([#7357]).
- Goroutine leak during configuration update resulting in increased response
time ([#6818]).
Expand Down
5 changes: 5 additions & 0 deletions client/src/components/SetupGuide/Guide.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
font-size: 15px;
}

.guide__list {
margin-top: 16px;
padding-left: 24px;
}

.guide__address {
display: block;
margin-bottom: 7px;
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/SetupGuide/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ const SetupGuide = ({
<Trans>install_devices_address</Trans>:
</div>

<div className="mt-3">
<ul className="guide__list">
{dnsAddresses.map((ip: any) => (
<li key={ip} className="guide__address">
{ip}
</li>
))}
</div>
</ul>
</div>

<Guide dnsAddresses={dnsAddresses} />
Expand Down

0 comments on commit 739ccfa

Please sign in to comment.