Skip to content

Commit 8fa8548

Browse files
committed
fix(ui): update popover notifications spacing
1 parent faa04e5 commit 8fa8548

File tree

1 file changed

+3
-3
lines changed
  • redisinsight/ui/src/components/navigation-menu/components/notifications-center/Notification

1 file changed

+3
-3
lines changed

redisinsight/ui/src/components/navigation-menu/components/notifications-center/Notification/Notification.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { truncateText } from 'uiSrc/utils'
1010
import { FlexItem, Row } from 'uiSrc/components/base/layout/flex'
1111
import { TitleSize, Title } from 'uiSrc/components/base/text/Title'
1212
import { Text } from 'uiSrc/components/base/text'
13+
import { Spacer } from 'uiSrc/components/base/layout'
1314
import { RiBadge } from 'uiSrc/components/base/display/badge/RiBadge'
1415

1516
import styles from '../styles.module.scss'
@@ -31,10 +32,9 @@ const Notification = (props: Props) => {
3132
>
3233
{notification.title}
3334
</Title>
34-
35+
<Spacer size="s" />
3536
<Text
3637
size="s"
37-
color="subdued"
3838
className={cx('notificationHTMLBody', styles.notificationBody)}
3939
data-testid="notification-body"
4040
>
@@ -43,7 +43,7 @@ const Notification = (props: Props) => {
4343

4444
<Row className={styles.notificationFooter} align="center" justify="start">
4545
<FlexItem>
46-
<Text size="xs" color="subdued" data-testid="notification-date">
46+
<Text size="xs" data-testid="notification-date">
4747
{format(notification.timestamp * 1000, NOTIFICATION_DATE_FORMAT)}
4848
</Text>
4949
</FlexItem>

0 commit comments

Comments
 (0)