From fa8e821c1ee5201d4acd4bc87c9e1795346722dc Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 26 Nov 2022 13:47:04 -0600 Subject: [PATCH] Fix scheduled post datepicker being cut off Fixes https://gitlab.com/soapbox-pub/soapbox/-/issues/1213 --- app/soapbox/components/profile-hover-card.tsx | 2 +- app/soapbox/components/ui/card/card.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/components/profile-hover-card.tsx b/app/soapbox/components/profile-hover-card.tsx index 8ade427ca..bc65bc370 100644 --- a/app/soapbox/components/profile-hover-card.tsx +++ b/app/soapbox/components/profile-hover-card.tsx @@ -106,7 +106,7 @@ export const ProfileHoverCard: React.FC = ({ visible = true } onMouseEnter={handleMouseEnter(dispatch)} onMouseLeave={handleMouseLeave(dispatch)} > - + diff --git a/app/soapbox/components/ui/card/card.tsx b/app/soapbox/components/ui/card/card.tsx index 2fb89315b..ff5fa3be2 100644 --- a/app/soapbox/components/ui/card/card.tsx +++ b/app/soapbox/components/ui/card/card.tsx @@ -33,7 +33,7 @@ const Card = React.forwardRef(({ children, variant = 'def ref={ref} {...filteredProps} className={classNames({ - 'bg-white dark:bg-primary-900 text-gray-900 dark:text-gray-100 shadow-lg dark:shadow-none overflow-hidden isolate': variant === 'rounded', + 'bg-white dark:bg-primary-900 text-gray-900 dark:text-gray-100 shadow-lg dark:shadow-none': variant === 'rounded', [sizes[size]]: variant === 'rounded', }, className)} >