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

Fix the top heading of notification panel #10818

Merged
merged 1 commit into from
May 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/components/structures/NotificationPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,11 @@ export default class NotificationPanel extends React.PureComponent<IProps, IStat
>
<BaseCard
header={
<Heading size="h4" className="mx_BaseCard_header_title_heading">
{_t("Notifications")}
</Heading>
<div className="mx_BaseCard_header_title">
<Heading size="h4" className="mx_BaseCard_header_title_heading">
{_t("Notifications")}
</Heading>
</div>
}
/**
* Need to rename this CSS class to something more generic
Expand Down