We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we create a table, it's actual fit the width of the parent which is pretty ugly.
I have find the solution to make it fit the longer cell like that :
The problem is I can't find where to place the css. Here are little changes to made :
.table { /* width: 100%; */ /* old line */ width: auto; } .table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th { white-space: nowrap; /* not present before */ }
The text was updated successfully, but these errors were encountered:
🐛 Fix table styles, close #253
a4ff985
We fixed table styles in 0.7.3-RC3. Do you agree that the issue can be closed?
Sorry, something went wrong.
I don't have the code of my project anymore sorry...
OK.
No branches or pull requests
When we create a table, it's actual fit the width of the parent which is pretty ugly.
I have find the solution to make it fit the longer cell like that :
The problem is I can't find where to place the css. Here are little changes to made :
The text was updated successfully, but these errors were encountered: