How can I align the description text of the mat-expansion-panel
component to the right?
I attempted using 'text-align: right' in CSS but the alignment did not change. Here is my HTML:
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title>
Cycle ingénieur en informatique
</mat-panel-title>
<mat-panel-description>
2014-2017
</mat-panel-description>
</mat-expansion-panel-header>
....
</mat-expansion-panel>
CSS :
mat-panel-description {
text-align: right;
}
Here's how it currently looks:
https://i.sstatic.net/EOYMN.png
I want the "2014-2017" text to remain aligned to the right.