Skip to content

Commit

Permalink
Fix: UI feedback changes (#5852)
Browse files Browse the repository at this point in the history
* fix: add divider before delete button

* fix: timeline section title color in lightmode

* fix: remove the extra border from alert history tabs
  • Loading branch information
ahmadshaheer committed Sep 4, 2024
1 parent a7a2209 commit ba7343b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@
letter-spacing: -0.07px;
}
}

.lightMode {
.timeline {
&__title {
color: var(--text-ink-400);
}
}
}
2 changes: 1 addition & 1 deletion frontend/src/pages/AlertDetails/AlertDetails.styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
.ant-tabs {
&-nav {
&::before {
border-bottom: 1px solid var(--bg-vanilla-300) !important;
border: none !important;
}
}
&-tab {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ function AlertActionButtons({
onClick: (): void => handleAlertDuplicate(),
style: menuItemStyle,
},
{ type: 'divider' },
{
key: 'delete-rule',
label: 'Delete',
Expand Down

0 comments on commit ba7343b

Please sign in to comment.