Skip to content

Commit

Permalink
Re-add fontSize styling which was causing grid height bugs in #133691…
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Jun 13, 2022
1 parent d1c4cf0 commit 640df66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
.alertsTableActiveRow {
background-color: tintOrShade($euiColorLightShade, 50%, 0);
}
.alertsTableResponseOps .euiDataGridRowCell {
font-size: $euiFontSizeXS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const AlertsFlyout = lazy(() => import('./alerts_flyout'));
const GridStyles: EuiDataGridStyle = {
border: 'none',
header: 'underline',
fontSize: 's',
};

const AlertsTable: React.FunctionComponent<AlertsTableProps> = (props: AlertsTableProps) => {
Expand Down Expand Up @@ -174,11 +175,7 @@ const AlertsTable: React.FunctionComponent<AlertsTableProps> = (props: AlertsTab
);

return (
<section
className="alertsTableResponseOps"
style={{ width: '100%' }}
data-test-subj={props['data-test-subj']}
>
<section style={{ width: '100%' }} data-test-subj={props['data-test-subj']}>
<Suspense fallback={null}>
{flyoutAlertIndex > -1 && (
<AlertsFlyout
Expand Down

0 comments on commit 640df66

Please sign in to comment.