fix: snooze dropdown overflow (#1588)

This commit is contained in:
Aaryan Khandelwal
2023-07-20 14:49:30 +05:30
committed by GitHub
parent 780573dadd
commit 4aef8c2242

View File

@@ -261,7 +261,7 @@ export const NotificationPopover = () => {
{notifications ? (
notifications.length > 0 ? (
<div className="divide-y divide-custom-border-100 overflow-y-auto">
<div className="divide-y divide-custom-border-100 overflow-y-auto h-full">
{notifications.map((notification) => (
<NotificationCard
key={notification.id}