1
0
Fork 0

refactor(training): make logo smaller and center heading - training page (component)

This commit is contained in:
Vojtěch Mareš 2022-12-19 23:06:37 +01:00
parent d80c0ec7de
commit 69b845cbfd
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D

View file

@ -21,12 +21,12 @@ export const Training = ({ training }: Props) => {
<Container className="flex justify-around">
<Image
src={training.logo}
className="h-40 w-40 rounded-full"
className="h-32 w-32 rounded-full"
width="1500"
height="1500"
alt=""
/>
<h2 className="font-display self-center text-4xl tracking-tight text-white sm:text-6xl">
<h2 className="ml-4 text-center font-display self-center text-4xl tracking-tight text-white sm:text-6xl">
Školení {training.name}
</h2>
</Container>