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