I have a angular app and i use clarity instead of bootstrap,
i have a datagrid and would like to know how you can align the header text of the datagrid to the center i have tried inline styling an css but doesn't seem to work.
code example html file
<clr-datagrid>
<clr-dg-column class="align-content">User ID</clr-dg-column>
<clr-dg-column class="align-content">Name</clr-dg-column>
<clr-dg-column class="align-content">Creation date</clr-dg-column>
<clr-dg-column class="align-content">Favorite color</clr-dg-column>
<clr-dg-row >
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
</clr-dg-row>
<clr-dg-row >
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
</clr-dg-row>
<clr-dg-row >
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
<clr-dg-cell>data</clr-dg-cell>
</clr-dg-row>
<clr-dg-footer></clr-dg-footer>
</clr-datagrid>
css file
.align-content {
text-align: center;
}
thanks in advance