Skip to content
New issue

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

fix(data-table): fix row sizing with overflow menu #5292

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,16 @@
}

// Overflow Menu Overrides
.#{$prefix}--data-table td .#{$prefix}--overflow-menu {
margin: rem(-7px) 0 rem(-8px);
}

.#{$prefix}--data-table.#{$prefix}--data-table--compact
td
.#{$prefix}--overflow-menu {
margin: 0;
}

.#{$prefix}--data-table
td.#{$prefix}--table-column-menu
.#{$prefix}--overflow-menu[aria-expanded='false']:focus {
Expand Down