Skip to content
Snippets Groups Projects

Feature/1595 mobile friendly

Merged Yves Adler requested to merge feature/1595-mobile-friendly into main
Compare and Show latest version
1 file
+ 5
2
Compare changes
  • Side-by-side
  • Inline
+ 5
2
@@ -23,10 +23,13 @@ const Termin: React.FC<TerminProps> = ({title, date, children, turnus, imageSrc,
<article className="grid grid-cols-4">
<img className="rounded-lg w-full border" alt={imageAlt} src={imageSrc}/>
<div className="flex flex-col col-span-3">
<div className="text-gray-500 font-medium text-sm px-5">
<div className="text-gray-500 font-medium text-xs px-5">
Nächster Termin:
</div>
<div className="text-gray-600 font-bold px-5">
{formatDate(date)}
</div>
<h3 className="pl-5">{title}</h3>
<h3 className="pl-5 mt-3 text-2xl">{title}</h3>
<div className="flex-grow px-5">
{children}
</div>
Loading