@@ -70,9 +70,9 @@ const Argocd: FC = () => {
7070
7171 return (
7272 < form onSubmit = { handleForm } className = "w-full max-w-96" >
73- < div className = "rounded-md border border-gray-500" >
73+ < div className = "border border-gray-500 rounded-md " >
7474 < div className = "divide-y divide-gray-500" >
75- < div className = "flex w-full items-center justify-between px-3 py-3" >
75+ < div className = "flex items-center justify-between w-full px-3 py-3" >
7676 < p > Argo Application</ p >
7777 < input
7878 type = "checkbox"
@@ -92,7 +92,7 @@ const Argocd: FC = () => {
9292 ) }
9393 >
9494 < div
95- className = "flex cursor-pointer items-center justify-between py-3 pl-10 pr-3"
95+ className = "flex items-center justify-between py-3 pl-10 pr-3 cursor-pointer "
9696 onClick = { ( ) => handleDropdown ( 'sync_policy' ) }
9797 >
9898 < p > Sync Policy</ p >
@@ -134,7 +134,7 @@ const Argocd: FC = () => {
134134 </ div >
135135 </ div >
136136 </ div >
137- < div className = "flex w-full items-center justify-between px-3 py-3" >
137+ < div className = "flex items-center justify-between w-full px-3 py-3" >
138138 < p > Argocd Repository</ p >
139139 < input
140140 type = "checkbox"
@@ -145,7 +145,7 @@ const Argocd: FC = () => {
145145 onChange = { ( ) => handleServices ( 'argocd_repository' ) }
146146 />
147147 </ div >
148- < div className = "flex w-full items-center justify-between px-3 py-3" >
148+ < div className = "flex items-center justify-between w-full px-3 py-3" >
149149 < p > Application Depends Repository</ p >
150150 < input
151151 type = "checkbox"
@@ -161,12 +161,12 @@ const Argocd: FC = () => {
161161 < button
162162 type = "submit"
163163 disabled = { argocdPending || downloadPending }
164- className = "btn mt-3 w-full bg-orange-base text-white hover:bg-orange-base/70 disabled:bg-orange-base/50 disabled:text-white/70"
164+ className = "w-full mt-3 text-white btn bg-orange-base hover:bg-orange-base/70 disabled:bg-orange-base/50 disabled:text-white/70"
165165 >
166166 { argocdPending
167- ? 'Generate Terraform ...'
167+ ? 'Wait ...'
168168 : downloadPending
169- ? 'Downloading Template ...'
169+ ? 'Wait ...'
170170 : 'Generate Terraform' }
171171 </ button >
172172 </ form >
0 commit comments