diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html index d8d03e3cb5e5151473dffe860e41f96382f6e11d..d1fab6efe3224c6a68141cfaf221d0165692ad58 100644 --- a/src/app/structure-list/components/card/card.component.html +++ b/src/app/structure-list/components/card/card.component.html @@ -72,14 +72,24 @@ tabindex="0" fxLayout="row" fxLayoutGap="6px" - class="rdv-button" + class="hide-on-mobile rdv-button" [style]="buttonTypeEnum.modalPrimary" [type]="'form'" - [text]="'Demander un RDV'" + [text]="'Demander RDV'" [iconBtn]="'appointement'" [iconPos]="'left'" (click)="cardRDV(); $event.stopPropagation()" (keyup.enter)="cardRDV(); $event.stopPropagation()" /> + <app-button + tabindex="0" + class="hide-on-desktop" + [style]="buttonTypeEnum.modalPrimary" + [type]="'form'" + [text]="" + [iconBtn]="'appointement'" + (click)="cardRDV(); $event.stopPropagation()" + (keyup.enter)="cardRDV(); $event.stopPropagation()" + /> </div> </div>