Skip to content

Commit

Permalink
Borders in the notifications modal
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwoberts committed Oct 9, 2024
1 parent c28b780 commit 24019dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/assets/styles/utility/display.scss
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@
visibility: hidden;
}

.bt {
border-top: 1px solid;
}

.overflow-scroll {
overflow: scroll;
}
Expand Down
2 changes: 1 addition & 1 deletion public/components/NotificationIndicator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const NotificationIndicator = () => {
)}
{recent !== undefined && recent?.length > 0 && (
<>
<p className="text-subtitle px-4 mb-0 pt-4 bg-gray-50">
<p className="text-subtitle px-4 mb-0 pt-4 bg-gray-50 border-gray-200 bt">
<Trans id="modal.notifications.previous">Previous notifications</Trans>
</p>
<VStack spacing={0} className="py-2 bg-gray-50" divide={false}>
Expand Down

0 comments on commit 24019dd

Please sign in to comment.