Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/telosnetwork/telos-wallet
Browse files Browse the repository at this point in the history
…into develop
  • Loading branch information
donnyquixotic committed Nov 29, 2023
2 parents cd90262 + 9cb3df1 commit 181cb00
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
12 changes: 8 additions & 4 deletions src/components/evm/AppNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,10 @@ export default defineComponent({
margin-bottom: 32px;
width: max-content;
.c-app-nav__icon--acorn{
filter: grayscale(1);
}
&:hover {
color: var(--link-color);
Expand All @@ -497,8 +501,8 @@ export default defineComponent({
fill: var(--link-color);
}
#{$this}__icon--acorn path {
stroke: var(--link-color);
#{$this}__icon--acorn{
filter: grayscale(0);
}
}
}
Expand All @@ -523,8 +527,8 @@ export default defineComponent({
fill: var(--link-color);
}
&--current-route#{$this}__icon--acorn path {
stroke: var(--link-color);
&--current-route#{$this}__icon--acorn {
filter: grayscale(0);
}
}
Expand Down
8 changes: 6 additions & 2 deletions src/components/evm/UserInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@ export default defineComponent({
transition: background-color 0.1s ease-in-out;
transition-property: background-color, color;
.c-user-info__icon--acorn{
filter: grayscale(1);
}
&:hover {
background-color: var(--accent-color-5);
color: var(--accent-color);
Expand All @@ -182,8 +186,8 @@ export default defineComponent({
fill: var(--accent-color);
}
&#{$this}__icon--acorn path {
stroke: var(--accent-color);
&#{$this}__icon--acorn {
filter: grayscale(0);
}
}
}
Expand Down

0 comments on commit 181cb00

Please sign in to comment.