Skip to content

Commit

Permalink
Merge pull request #378 from reedu-reengineering-education/fix/oliver…
Browse files Browse the repository at this point in the history
…Things

adjusted max height
  • Loading branch information
Thiemann96 authored Mar 19, 2024
2 parents cbae779 + 3f4b1ff commit 63b7507
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function MapstoriesTab() {
const { t } = useTranslation(lng, 'mapstoriesTab')

return (
<Card className='h-[50%] overflow-scroll'>
<Card className=' overflow-scroll'>
<CardHeader>
<CardTitle>Was sind Mapstories?</CardTitle>
<CardDescription></CardDescription>
Expand Down Expand Up @@ -96,7 +96,7 @@ export default function MapstoriesTab() {
<div className="text-center">
Gefördert durch das Ministerium für Kultur und Wissenschaft des Landes Nordrhein-Westfalen und die Kunststiftung NRW im Rahmen des Projektes ›zeitgeisty. be part of … Protestkulturen 1957-1967‹, getragen vom Bunker Ulmenwall e.V.
</div>
<div className='flex flex-col lg:flex-row'>
<div className='flex flex-col lg:flex-row align-baseline'>
<div className="flex flex-1 flex-col items-center gap-4 p-8 lg:border-r-2 my-2 lg:border-zinc-300">
{/* @ts-ignore */}
<a
Expand Down
10 changes: 5 additions & 5 deletions src/app/[lng]/(main)/(sub)/about/PageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function PageContent() {
</TabsList>
<TabsContent
className={cx(
'max-h-[30rem] overflow-scroll rounded-md bg-white',
'max-h-[45rem] overflow-scroll rounded-md bg-white',
activeTab == 'mapstories' ? 'block' : 'hidden',
)}
forceMount
Expand All @@ -59,7 +59,7 @@ export default function PageContent() {
</TabsContent>
<TabsContent
className={cx(
'max-h-[30rem] overflow-scroll rounded-md bg-white',
'max-h-[40rem] overflow-scroll rounded-md bg-white',
activeTab == 'ourStory' ? 'block' : 'hidden',
)}
forceMount
Expand All @@ -69,7 +69,7 @@ export default function PageContent() {
</TabsContent>
<TabsContent
className={cx(
'max-h-[30rem] overflow-scroll rounded-md bg-white ',
'max-h-[40rem] overflow-scroll rounded-md bg-white ',
activeTab == 'offer' ? 'block' : 'hidden',
)}
forceMount
Expand All @@ -79,7 +79,7 @@ export default function PageContent() {
</TabsContent>
<TabsContent
className={cx(
'max-h-[30rem] overflow-scroll rounded-md bg-white ',
'max-h-[40rem] overflow-scroll rounded-md bg-white ',
activeTab == 'support' ? 'block' : 'hidden',
)}
forceMount
Expand All @@ -89,7 +89,7 @@ export default function PageContent() {
</TabsContent>
<TabsContent
className={cx(
'max-h-[30rem] overflow-scroll rounded-md bg-white ',
'max-h-[40rem] overflow-scroll rounded-md bg-white ',
activeTab == 'faq' ? 'block' : 'hidden',
)}
forceMount
Expand Down

0 comments on commit 63b7507

Please sign in to comment.