digicorp / propeller

Propeller - Develop more, Code less. Propeller is a front-end responsive framework based on Google's Material Design Standards & Bootstrap.
http://propeller.in
MIT License
1.13k stars 141 forks source link

text-right does not seem to work on a td or th element #57

Closed mika76 closed 6 years ago

monika-digicorp commented 6 years ago

Hello @mika76, Thank you for bringing this to our notice. We will look into this and make the necessary changes in the library. Meanwhile, you can try adding below temporary solution-

.pmd-table.table>tbody>tr>td, .pmd-table.table>tbody>tr>th, .pmd-table.table>tfoot>tr>td, .pmd-table.table>tfoot>tr>th, .pmd-table.table>thead>tr>td, .pmd-table.table>thead>tr>th {
    text-align: right;
}

Hope this may solve your purpose.