Skip to content

Commit

Permalink
fix(docs-infra): apply text-top instead of top for table alignment (
Browse files Browse the repository at this point in the history
#47457)

use `text-top` instead of `top` for table cells verical alignment
so that the texts are correctly vertially aligned regardless on
the dom structure

resolves #47423

PR Close #47457
  • Loading branch information
dario-piotrowicz authored and pkozlowski-opensource committed Sep 19, 2022
1 parent 14cb9fb commit a192c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aio/src/styles/2-modules/table/_table.scss
Expand Up @@ -37,7 +37,7 @@ table {
padding: 16px;
text-align: left;
@include mixins.line-height(24);
vertical-align: top;
vertical-align: baseline;

@media (max-width: 480px) {
&:before {
Expand Down

0 comments on commit a192c2d

Please sign in to comment.