WIP
This commit is contained in:
parent
96bf783e02
commit
8c0fe19cf9
4 changed files with 19 additions and 10 deletions
|
@ -148,14 +148,7 @@ import { t } from "../i18n";
|
||||||
width: 0.75em;
|
width: 0.75em;
|
||||||
height: 0.75em;
|
height: 0.75em;
|
||||||
background: white;
|
background: white;
|
||||||
clip-path: polygon(
|
clip-path: polygon(0% 50%, 12.5% 37.5%, 37.5% 62.5%, 87.5% 12.5%, 100% 25%, 37.5% 87.5%);
|
||||||
0% 50%,
|
|
||||||
12.5% 37.5%,
|
|
||||||
37.5% 62.5%,
|
|
||||||
87.5% 12.5%,
|
|
||||||
100% 25%,
|
|
||||||
37.5% 87.5%
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.radio::before {
|
.radio::before {
|
||||||
|
|
|
@ -52,4 +52,3 @@ const { lang } = Astro.params;
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</Layout>
|
</Layout>
|
||||||
../../tasks
|
|
||||||
|
|
17
src/pages/[lang]/letter-exists.astro
Normal file
17
src/pages/[lang]/letter-exists.astro
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
export { getStaticPaths } from "../../static-paths";
|
||||||
|
export const partial = true;
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="text-center py-6 px-6">
|
||||||
|
<h2 class="font-display2 text-4xl text-balance mb-12">
|
||||||
|
Vypadá to, že z tohoto mailu jsi už zprávu poslal*a.
|
||||||
|
</h2>
|
||||||
|
<img
|
||||||
|
src="/images/mail.webp"
|
||||||
|
alt=""
|
||||||
|
width="448"
|
||||||
|
height="248"
|
||||||
|
class="invert max-w-[200px] mx-auto"
|
||||||
|
/>
|
||||||
|
</div>
|
|
@ -4,7 +4,7 @@ export const partial = true;
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="text-center py-6 px-6">
|
<div class="text-center py-6 px-6">
|
||||||
<h2 class="font-display2 text-4xl mb-3">Potřebujeme ověřit tvůj e-mail</h2>
|
<h2 class="font-display2 text-4xl mb-3 text-balance">Potřebujeme ověřit tvůj e-mail</h2>
|
||||||
<p class="mb-12 text-balance">Klikni prosím na odkaz v mailu, který jsme ti poslali.</p>
|
<p class="mb-12 text-balance">Klikni prosím na odkaz v mailu, který jsme ti poslali.</p>
|
||||||
<img
|
<img
|
||||||
src="/images/mail.webp"
|
src="/images/mail.webp"
|
||||||
|
|
Reference in a new issue