Skip to content

Commit

Permalink
Merge pull request #687 from aeternity/meet_icon
Browse files Browse the repository at this point in the history
Add meet icon for meet menu item
  • Loading branch information
mradkov committed Jul 7, 2020
2 parents 93f6e37 + 22e1a11 commit 6c015ed
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/assets/iconMeet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/components/layout/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
</div>
<div class="navigation__item networking">
<router-link :to="{ name: 'conference' }">
<IconMeet class="navigation__item__image" />
<span>{{ $t('Networking.MenuLink') }}</span>
</router-link>
</div>
Expand All @@ -60,6 +61,7 @@ import IconUser from '../../assets/iconUser.svg?icon-component';
import IconHelp from '../../assets/iconHelp.svg?icon-component';
import IconDiamond from '../../assets/iconDiamond.svg?icon-component';
import IconGovernance from '../../assets/iconGovernance.svg?icon-component';
import IconMeet from '../../assets/iconMeet.svg?icon-component';
export default {
name: 'Navigation',
Expand All @@ -69,6 +71,7 @@ export default {
IconHelp,
IconDiamond,
IconGovernance,
IconMeet,
},
computed: {
...mapGetters(['isLoggedIn']),
Expand Down Expand Up @@ -141,4 +144,10 @@ export default {
margin-bottom: 1.55rem;
}
}
.iconMeet {
width: 27px;
height: 18px;
padding-left: 5px;
}
</style>

1 comment on commit 6c015ed

@mradkov
Copy link
Contributor Author

@mradkov mradkov commented on 6c015ed Jul 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.