Skip to content

Commit 2fa446c

Browse files
committed
style(terraform): move generate button to center
1 parent cabb42d commit 2fa446c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

web/src/features/terraform/components/Docker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Docker = () => {
3636
<div className="flex flex-col ">
3737
<FormProvider {...formMethods}>
3838
<form onSubmit={handleFormSubmit}>
39-
<div className="flex justify-between w-full md:flex-col md:items-center md:gap-y-5 border border-orange-300 p-8">
39+
<div className="flex flex-col justify-between w-full border items-center gap-y-5 border-orange-300 p-8">
4040
<HStack lg={{ gap: 5 }} md={{ gap: 3 }}>
4141
<p className="font-bold">Docker service: </p>
4242
<CheckBox

web/src/features/terraform/components/EC2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const EC2 = () => {
3333
<div className="flex flex-col ">
3434
<FormProvider {...formMethods}>
3535
<form onSubmit={handleFormSubmit}>
36-
<div className="flex justify-between w-full md:flex-col md:items-center md:gap-y-5 border border-orange-300 p-8">
36+
<div className="flex justify-between flex-col border items-center gap-y-5 border-orange-300 p-8">
3737
<HStack gap={5}>
3838
<p className="font-bold">EC2 service: </p>
3939
<CheckBox

web/src/features/terraform/components/IAM.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const IAM = () => {
3333
<div className="flex flex-col ">
3434
<FormProvider {...formMethods}>
3535
<form onSubmit={handleFormSubmit}>
36-
<div className="flex justify-between w-full border md:flex-col md:items-center md:gap-y-5 border-orange-300 p-8">
36+
<div className="flex justify-between w-full items-center border gap-y-5 flex-col border-orange-300 p-8">
3737
<HStack gap={5}>
3838
<p className="font-bold">IAM service: </p>
3939
<CheckBox

web/src/features/terraform/components/S3.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const S3 = () => {
3333
<div className="flex flex-col">
3434
<FormProvider {...formMethods}>
3535
<form onSubmit={handleFormSubmit}>
36-
<div className="flex justify-between w-full border md:flex-col md:items-center md:gap-y-5 border-orange-300 p-8">
36+
<div className="flex justify-center items-center w-full border gap-y-5 flex-col border-orange-300 p-8">
3737
<HStack gap={5}>
3838
<p className="font-bold">S3 service: </p>
3939
<CheckBox

0 commit comments

Comments
 (0)