Skip to content

Commit 5a18189

Browse files
authored
fix(table): inherit vertical align in table footer
The default vertical alignment of table footer were explicitly set as middle, which ignores the `top aligned` and `bottom aligned` variant from table row and unable to align top and bottom within table footer. By setting default value as inherit will enable to specify vertical alignment from table row without needing to specify on each cell.
1 parent 7cc71fd commit 5a18189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/themes/default/collections/table.variables

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
@footerDivider: none;
5959
@footerBackground: @offWhite;
6060
@footerAlign: inherit;
61-
@footerVerticalAlign: middle;
61+
@footerVerticalAlign: inherit;
6262
@footerColor: @textColor;
6363
@footerVerticalPadding: @cellVerticalPadding;
6464
@footerHorizontalPadding: @cellHorizontalPadding;

0 commit comments

Comments
 (0)