-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
Closed
Description
The Reboot docs talk about text-align being matched to the <td>, but as you can see above, <th>s aren't left-aligned. This is because we're not explicitly setting text-align anywhere up the DOM. We updated our styles while back I believe to lower the selector specificity to allow .text-* classes on .table, but we didn't reset the default value.
I'd like to fix this by doing one of the following:
- Setting
text-alignon the<body>to a defaultleftvalue. - Setting an explicit
text-alignon the<th>in Reboot (my preferred I think, given lowest specificity and an existing selector). - Setting an explicit
text-alignon the.table.
Thoughts @twbs/css-review?
Reactions are currently unavailable
