mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +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: SvgPicture.asset(
|
||||
Assets.svg.radio,
|
||||
height: 14,
|
||||
width: 14,
|
||||
height: isDesktop ? 19 : 14,
|
||||
width: isDesktop ? 19 : 14,
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.accentColorGreen,
|
||||
|
|
Loading…
Reference in a new issue