Skip to content
Snippets Groups Projects
Commit be5de871 authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

Merge branch '291-icone-profile-non-clickable-en-mobile' into 'dev'

Resolve "Icone profile non clickable en mobile"

See merge request !497
parents 3b280b69 71225f5d
No related branches found
No related tags found
2 merge requests!525V2.3.0,!497Resolve "Icone profile non clickable en mobile"
...@@ -21,7 +21,15 @@ ...@@ -21,7 +21,15 @@
/> />
</div> </div>
<div class="containerIconMenu"> <div class="containerIconMenu">
<app-svg-icon [type]="'ico'" [icon]="'profile'" [iconClass]="'icon-32'" /> <app-svg-icon
class="clickable"
tabindex="0"
[type]="'ico'"
[icon]="'profile'"
[iconClass]="'icon-32'"
(click)="isLoggedIn ? openProfileMenu() : goToLoginPage()"
(keyup.enter)="isLoggedIn ? openProfileMenu() : goToLoginPage()"
/>
</div> </div>
<div fxLayout="row" class="right-header" fxLayoutAlign="center center" fxLayoutGap="3vw"> <div fxLayout="row" class="right-header" fxLayoutAlign="center center" fxLayoutGap="3vw">
<a routerLink="/news" [routerLinkActive]="'active'" i18n>Actualités</a> <a routerLink="/news" [routerLinkActive]="'active'" i18n>Actualités</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment