Fixed icon color in about tab

This commit is contained in:
RemixDev 2020-07-28 15:41:30 +02:00
parent 013639fc3f
commit 2f126bc732
2 changed files with 7 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -87,7 +87,7 @@
<strong>Bitcoin:</strong> 1sdNymSJrMBWyHM4u2m9uco5nv6uV4Qs1
</li>
<li>
<i v-html="ethereum" />
<i class="ethereum" v-html="ethereum" />
<strong>Ethereum:</strong> 0x1d2aa67e671485CD4062289772B662e0A6Ff976c
</li>
</ul>
@ -127,6 +127,10 @@ i /deep/ svg {
fill: #ff9900;
}
.ethereum /deep/ svg {
fill: var(--foreground);
}
:link {
text-decoration: none;
}
@ -206,4 +210,4 @@ export default {
bitcoin
})
}
</script>
</script>