Skip to content
Snippets Groups Projects
Commit 9f7f04ee authored by Alexa Valentová's avatar Alexa Valentová
Browse files

fix object fit, css, required fields

parent 53c1f912
No related branches found
No related tags found
2 merge requests!1273Release,!1272fix object fit, css, required fields
Pipeline #20820 passed
This commit is part of merge request !1272. Comments created here will be created in the context of that merge request.
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<div class="xl:!w-[115%]"> <div class="xl:!w-[115%]">
<div class="flex gap-0 xl:flex-row flex-col"> <div class="flex gap-0 xl:flex-row flex-col">
{% image page.new_wish_image original class="h-32 xl:flex-1" style="height:6rem" %} {% image page.new_wish_image original class="h-32 xl:flex-1" style="height:6rem; object-fit:contain" %}
<div <div
class=" class="
...@@ -52,30 +52,41 @@ ...@@ -52,30 +52,41 @@
{% endfor %} {% endfor %}
<textarea <textarea
class="bg-white font-alt p-3 text-3xl w-full" class="bg-grey-150 font-alt p-3 text-3xl w-full"
placeholder="Přeju si, aby..." placeholder="Přeju si, aby..."
name="vase_prani" name="vase_prani"
id="id_vase_prani" id="id_vase_prani"
required
></textarea> ></textarea>
<div class="flex xl:gap-6 gap-4 justify-center mt-4 xl:flex-row flex-col"> <div class="flex xl:gap-6 gap-4 justify-center mt-4 xl:flex-row flex-col">
<input <input
type="text" type="text"
class="bg-white font-alt p-3 text-3xl flex-1" class="bg-grey-150 font-alt p-3 text-3xl flex-1"
placeholder="Jméno & příjmení" placeholder="Jméno & příjmení"
name="jmeno_a_prijmeni" name="jmeno_a_prijmeni"
id="id_jmeno_a_prijmeni" id="id_jmeno_a_prijmeni"
required
> >
<input <input
type="email" type="email"
class="bg-white font-alt p-3 text-3xl flex-1" class="bg-grey-150 font-alt p-3 text-3xl flex-1"
placeholder="E-mail" placeholder="E-mail"
name="e_mail" name="e_mail"
id="id_e_mail" id="id_e_mail"
required
> >
</div> </div>
<div class="mt-4">
<input type="checkbox" name="accepts_gdpr" id="accepts_gdpr" required="">
<label for="accepts_gdpr" class="text-lg">
Dávám souhlas se zpracováním osobních a údajů. Více o ochraně osobních údajů zde:
<a class="text-grey-600 underline" href="https://www.pirati.cz/ochrana-osobnich-udaju/">pirati.cz/ochrana-osobnich-udaju</a>
</label>
</div>
<div class="mt-4"> <div class="mt-4">
<input <input
type="submit" type="submit"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment