File tree Expand file tree Collapse file tree 6 files changed +15
-7
lines changed
Expand file tree Collapse file tree 6 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff line change 44@tailwind components;
55@tailwind utilities;
66
7+ * {
8+ -webkit-appearance : none;
9+ }
10+
711body {
812 font-family : 'Mulish' ;
913 font-variation-settings : 'wght' 300 ;
6670h6 {
6771 margin : 0 ;
6872 font-weight : normal;
69- word-break : break-all;
73+ /* word-break: break-all; */
7074}
7175
7276h1 {
9094 border-bottom : var (--line-size ) solid currentColor;
9195}
9296
97+ fieldset {
98+ display : contents;
99+ }
100+
93101/* UTILITY */
94102
95103.bg {
Original file line number Diff line number Diff line change 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]}
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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"
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 >
You can’t perform that action at this time.
0 commit comments