Skip to content

Commit b84c669

Browse files
authored
Merge pull request #5 from nms-ev/ios
Ios
2 parents 07938a5 + 4f669c4 commit b84c669

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"preview": "vite preview --port 1234 --host",
88
"check": "svelte-check --tsconfig ./tsconfig.json",
99
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
10-
"tunnel": "docker run cloudflare/cloudflared tunnel --no-autoupdate --url http://host.docker.internal:1234/",
10+
"tunnel": "docker run --rm cloudflare/cloudflared tunnel --no-autoupdate --url http://host.docker.internal:1234/",
1111
"codegen": "graphql-codegen --config codegen.ts",
1212
"codegen:watch": "graphql-codegen --config codegen.ts --watch"
1313
},

src/app.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
@tailwind components;
55
@tailwind utilities;
66

7+
* {
8+
-webkit-appearance: none;
9+
}
10+
711
body {
812
font-family: 'Mulish';
913
font-variation-settings: 'wght' 300;
@@ -66,7 +70,7 @@ h5,
6670
h6 {
6771
margin: 0;
6872
font-weight: normal;
69-
word-break: break-all;
73+
/* word-break: break-all; */
7074
}
7175

7276
h1 {
@@ -90,6 +94,10 @@ hr {
9094
border-bottom: var(--line-size) solid currentColor;
9195
}
9296

97+
fieldset {
98+
display: contents;
99+
}
100+
93101
/* UTILITY */
94102

95103
.bg {

src/lib/components/form/Country.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<Field {label} {error}>
1717
<select
1818
{...selectProps}
19-
class="bg-[var(--bg-color)] py-0.5 border-solid border-b-[0.075rem] text-base border-current"
19+
class="bg-[var(--bg-color)] py-0.5 rounded-none border-solid border-b-[0.075rem] text-base border-current"
2020
bind:value
2121
>
2222
{#each Object.entries(getCodeList()) as [code, name]}

src/lib/components/form/Field.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
export let error: string | null = null
44
</script>
55

6-
<label class="flex flex-col">
6+
<label class="flex flex-col w-full">
77
<slot />
88
<div class="flex justify-between text-sm">
99
<span>{label}</span>

src/lib/components/form/TextInput.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<Field {label} {error}>
1616
<input
1717
{...inputProps}
18-
class="bg-[var(--bg-color)] py-0.5 border-solid border-b-[0.075rem] text-base border-current"
18+
class="bg-[var(--bg-color)] py-0.5 rounded-none border-solid border-b-[0.075rem] text-base border-current"
1919
bind:value
2020
/>
2121
</Field>

src/routes/(web)/join/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
autocomplete="address-line1"
124124
error={getError('address.street')}
125125
/>
126-
<div class="md:flex gap-4">
126+
<div class="flex gap-3 flex-col md:flex-row">
127127
<TextInput
128128
bind:value={form.address.zip}
129129
label="Zip"
@@ -149,7 +149,7 @@
149149
{#if error}
150150
<p class="text-red-800">{error}</p>
151151
{/if}
152-
<div class:opacity-50={!parsed.success}>
152+
<div class:opacity-20={!parsed.success}>
153153
<Button type="submit" label="Register" />
154154
</div>
155155
</div>

0 commit comments

Comments
 (0)