mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-18 13:01:51 +03:00
Pull request 2316: AGDNS-2239 fix setup guide list styles
Squashed commit of the following: commit 52cc651e3b6a5fe7c46ad1fb41865f2dd1f84258 Merge:324c4e102
c234e5dc3
Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Dec 5 15:28:39 2024 +0300 Merge branch 'master' into AGDNS-2239 commit324c4e1024
Author: Ildar Kamalov <ik@adguard.com> Date: Wed Dec 4 17:03:46 2024 +0300 fix mobile styles commit739ccfa6f1
Author: Ildar Kamalov <ik@adguard.com> Date: Wed Dec 4 16:45:48 2024 +0300 AGDNS-2239 fix guide list padding
This commit is contained in:
parent
c234e5dc31
commit
11dfc7a3e8
3 changed files with 14 additions and 2 deletions
|
@ -41,6 +41,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]).
|
||||
|
|
|
@ -14,6 +14,17 @@
|
|||
font-size: 15px;
|
||||
}
|
||||
|
||||
.guide__list {
|
||||
margin-top: 16px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.guide__list {
|
||||
padding-left: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.guide__address {
|
||||
display: block;
|
||||
margin-bottom: 7px;
|
||||
|
|
|
@ -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} />
|
||||
|
|
Loading…
Reference in a new issue