diff --git a/src/components/dropdown-menu/dropdown-menu.tsx b/src/components/dropdown-menu/dropdown-menu.tsx index ab40f164e..2c94f9be0 100644 --- a/src/components/dropdown-menu/dropdown-menu.tsx +++ b/src/components/dropdown-menu/dropdown-menu.tsx @@ -293,7 +293,7 @@ const DropdownMenu = (props: IDropdownMenu) => { data-testid='dropdown-menu' ref={refs.setFloating} className={ - clsx('z-[1001] w-56 rounded-md bg-white py-1 shadow-lg transition-opacity duration-100 focus:outline-none dark:bg-gray-900 dark:ring-2 dark:ring-primary-700', { + clsx('z-[1001] w-56 rounded-md bg-white py-1 shadow-lg transition-opacity duration-100 focus:outline-none black:bg-black dark:bg-gray-900 dark:ring-2 dark:ring-primary-700', { 'opacity-0 pointer-events-none': !isOpen, }) } @@ -318,7 +318,7 @@ const DropdownMenu = (props: IDropdownMenu) => {
diff --git a/src/components/event-preview.tsx b/src/components/event-preview.tsx index ec1031662..710075764 100644 --- a/src/components/event-preview.tsx +++ b/src/components/event-preview.tsx @@ -51,7 +51,7 @@ const EventPreview: React.FC = ({ status, className, hideAction, )); return ( -
+
{floatingAction && action}
diff --git a/src/components/group-card.tsx b/src/components/group-card.tsx index e95914efa..08df1a45f 100644 --- a/src/components/group-card.tsx +++ b/src/components/group-card.tsx @@ -17,7 +17,7 @@ interface IGroupCard { const GroupCard: React.FC = ({ group }) => { return ( {/* Group Cover Image */} diff --git a/src/components/groups/popover/group-popover.tsx b/src/components/groups/popover/group-popover.tsx index 6aa214cd9..44d1d5244 100644 --- a/src/components/groups/popover/group-popover.tsx +++ b/src/components/groups/popover/group-popover.tsx @@ -45,7 +45,7 @@ const GroupPopover = (props: IGroupPopoverContainer) => { content={ {/* Group Cover Image */} diff --git a/src/components/landing-gradient.tsx b/src/components/landing-gradient.tsx index 1cef99843..ed27fe214 100644 --- a/src/components/landing-gradient.tsx +++ b/src/components/landing-gradient.tsx @@ -2,7 +2,7 @@ import React from 'react'; /** Fullscreen gradient used as a backdrop to public pages. */ const LandingGradient: React.FC = () => ( -
+
); export default LandingGradient; diff --git a/src/components/modal-root.tsx b/src/components/modal-root.tsx index 024f59ebc..1c755b995 100644 --- a/src/components/modal-root.tsx +++ b/src/components/modal-root.tsx @@ -232,7 +232,7 @@ const ModalRoot: React.FC = ({ children, onCancel, onClose, type })