Skip to content

Commit cb7659b

Browse files
committed
fixing sizes in register screen on mobile too :D
1 parent 391f21f commit cb7659b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

apps/ui/src/routes/register.svelte

+4-2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
required
102102
bind:this={emailEl}
103103
bind:value={email}
104+
class="w-56 md:w-96"
104105
/>
105106
<input
106107
type="password"
@@ -109,13 +110,15 @@
109110
bind:this={passwordEl}
110111
bind:value={password}
111112
required
113+
class="w-56 md:w-96"
112114
/>
113115
<input
114116
type="password"
115117
name="passwordCheck"
116118
placeholder={$t('forms.password_again')}
117119
bind:value={passwordCheck}
118120
required
121+
class="w-56 md:w-96"
119122
/>
120123

121124
<div class="flex space-x-2 h-8 items-center justify-center pt-8">
@@ -125,8 +128,7 @@
125128
disabled={loading}
126129
class:bg-transparent={loading}
127130
class:bg-coollabs={!loading}
128-
class:loading={loading}
129-
>{loading ? $t('register.registering') : $t('register.register')}</button
131+
class:loading>{loading ? $t('register.registering') : $t('register.register')}</button
130132
>
131133
</div>
132134
</form>

0 commit comments

Comments
 (0)