diff --git a/web/components/modals/BrowserNotifyModal/BrowserNotifyModal.tsx b/web/components/modals/BrowserNotifyModal/BrowserNotifyModal.tsx index 5fbe55477..db14593b3 100644 --- a/web/components/modals/BrowserNotifyModal/BrowserNotifyModal.tsx +++ b/web/components/modals/BrowserNotifyModal/BrowserNotifyModal.tsx @@ -60,7 +60,7 @@ const PermissionPopupPreview: FC = ({ start }) => ( const NotificationsEnabled = () => (
- Notifications are enabled + Notifications are enabled To disable push notifications from {window.location.hostname.toString()} access your browser permissions for this site and turn off notifications. Learn more. diff --git a/web/components/ui/Modal/Modal.module.scss b/web/components/ui/Modal/Modal.module.scss index 2d29dae8a..4d7355a89 100644 --- a/web/components/ui/Modal/Modal.module.scss +++ b/web/components/ui/Modal/Modal.module.scss @@ -10,5 +10,10 @@ padding: 2vw; background-color: var(--theme-color-components-modal-content-background); color: var(--theme-color-components-modal-content-text); -} + h1:first-child, + h2:first-child, + h3:first-child { + margin-top: unset; + } +}