Skip to content
Snippets Groups Projects
Commit 12b8fe0e authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

fix: firefox issue on hour picker

parent a0570849
No related branches found
No related tags found
2 merge requests!85Recette,!84Dev
......@@ -64,42 +64,44 @@
</div>
<div *ngIf="structure.hasSocialNetwork()" fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="13px">
<app-svg-icon [type]="'ico'" [icon]="'network'"></app-svg-icon>
<a
*ngIf="structure.facebook"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.facebook"
>
<app-svg-icon [type]="'ico'" [icon]="'facebook'" [title]="Facebook"></app-svg-icon
></a>
<a
*ngIf="structure.twitter"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.twitter"
>
<app-svg-icon [type]="'ico'" [icon]="'twitter'" [title]="Twitter"></app-svg-icon
></a>
<a
*ngIf="structure.instagram"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.instagram"
>
<app-svg-icon [type]="'ico'" [icon]="'instagram'" [title]="Instagram"></app-svg-icon
></a>
<a
*ngIf="structure.linkedin"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.linkedin"
>
<app-svg-icon [type]="'ico'" [icon]="'linkedin'" [title]="Linkedin"></app-svg-icon
></a>
<div fxLayout="row" fxLayoutAlign="none baseline" fxLayoutGap="8px">
<a
*ngIf="structure.facebook"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.facebook"
>
<app-svg-icon [type]="'ico'" [icon]="'facebook'" [title]="Facebook"></app-svg-icon
></a>
<a
*ngIf="structure.twitter"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.twitter"
>
<app-svg-icon [type]="'ico'" [icon]="'twitter'" [title]="Twitter"></app-svg-icon
></a>
<a
*ngIf="structure.instagram"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.instagram"
>
<app-svg-icon [type]="'ico'" [icon]="'instagram'" [title]="Instagram"></app-svg-icon
></a>
<a
*ngIf="structure.linkedin"
target="_blank"
class="custom-link"
rel="noopener noreferrer"
[href]="'http://' + structure.linkedin"
>
<app-svg-icon [type]="'ico'" [icon]="'linkedin'" [title]="Linkedin"></app-svg-icon
></a>
</div>
</div>
<div *ngIf="structure.contactPhone" fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="13px">
<app-svg-icon [type]="'ico'" [icon]="'tel'"></app-svg-icon>
......
......@@ -31,7 +31,7 @@
.switch {
position: relative;
display: inline-block;
width: 60px;
margin-left: -55px;
height: 34px;
}
......
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