Material theme apply on Ionic component

Hello,

I have a problem using Angular Material in my ionic app.

This is my angular.json

            "styles": [
              "@angular/material/prebuilt-themes/indigo-pink.css",
              "src/theme/variables.scss",
              "src/global.scss"
            ]

And my problem is that material theme apply on each p on this component

<ion-list>
  <ion-item *ngFor="let c of items">
    <ion-label class="ion-text-wrap">
      <ion-text>
        <p *ngIf="c.prop1">Prop1: {{c.prop1| moment:'DD/MM/YY HH:mm:ss'}}</p>
        <p *ngIf="c.prop2">Prop2: {{c.prop2| moment:'DD/MM/YY HH:mm:ss'}}</p>
      </ion-text>
    </ion-label>
  </ion-item>
</ion-list>

image_2023-03-31_111750629

Is it possible to not add this margin on my ionic components ?

Thanks

No one ever faced this problem ?