diff --git a/src/interface/web/app/components/referencePanel/referencePanel.tsx b/src/interface/web/app/components/referencePanel/referencePanel.tsx index 618d97aa..5852854e 100644 --- a/src/interface/web/app/components/referencePanel/referencePanel.tsx +++ b/src/interface/web/app/components/referencePanel/referencePanel.tsx @@ -297,6 +297,7 @@ export function TeaserReferencesSection(props: TeaserReferenceSectionProps) { { shouldShowShowMoreButton && } @@ -309,6 +310,7 @@ export function TeaserReferencesSection(props: TeaserReferenceSectionProps) { interface ReferencePanelDataProps { notesReferenceCardData: NotesContextReferenceData[]; onlineReferenceCardData: OnlineReferenceData[]; + isMobileWidth: boolean; } export default function ReferencePanel(props: ReferencePanelDataProps) { @@ -320,8 +322,9 @@ export default function ReferencePanel(props: ReferencePanelDataProps) { return ( - View references + className={`text-balance flex sm:justify-start md:justify-start overflow-hidden break-words p-0 bg-transparent border-none text-gray-400 align-middle items-center !m-2 inline-flex ${props.isMobileWidth ? 'w-auto' : 'w-[200px]'}`}> + View references +