Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit fec1785

Browse files
authored
Wrap the title heading on Notification panel with mx_BaseCard_header_title (#10818)
1 parent 56f6946 commit fec1785

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/components/structures/NotificationPanel.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,11 @@ export default class NotificationPanel extends React.PureComponent<IProps, IStat
9393
>
9494
<BaseCard
9595
header={
96-
<Heading size="h4" className="mx_BaseCard_header_title_heading">
97-
{_t("Notifications")}
98-
</Heading>
96+
<div className="mx_BaseCard_header_title">
97+
<Heading size="h4" className="mx_BaseCard_header_title_heading">
98+
{_t("Notifications")}
99+
</Heading>
100+
</div>
99101
}
100102
/**
101103
* Need to rename this CSS class to something more generic

0 commit comments

Comments
 (0)