mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
desktop network icon size fix
This commit is contained in:
parent
c1d81b52a5
commit
75d9ca6912
1 changed files with 2 additions and 2 deletions
|
@ -481,8 +481,8 @@ class _WalletNetworkSettingsViewState
|
||||||
child: Center(
|
child: Center(
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
Assets.svg.radio,
|
Assets.svg.radio,
|
||||||
height: 14,
|
height: isDesktop ? 19 : 14,
|
||||||
width: 14,
|
width: isDesktop ? 19 : 14,
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
.accentColorGreen,
|
.accentColorGreen,
|
||||||
|
|
Loading…
Reference in a new issue