We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7501f61 commit d213167Copy full SHA for d213167
src/routes/signup.svelte
@@ -1,6 +1,7 @@
1
<script>
2
import LogoCollab from '../components/LogoCollab.svelte'
3
import TitleCollab from '../components/TitleCollab.svelte'
4
+ import LinkCollab from '../components/LinkCollab.svelte'
5
6
import FormSignup from '../containers/FormSignup.svelte'
7
</script>
@@ -26,6 +27,10 @@
26
27
margin-bottom: var(--gap-big);
28
}
29
30
+ .signup :global(.link-collab) {
31
+ margin-top: var(--gap-normal);
32
+ }
33
+
34
@media (min-height: 600px) {
35
.signup {
36
align-items: center;
@@ -40,5 +45,7 @@
40
45
<TitleCollab content="Cadastro" uppercase />
41
46
42
47
<FormSignup />
48
49
+ <LinkCollab action="login" content="Se já tem uma conta? Login" />
43
50
</div>
44
51
</main>
0 commit comments