Skip to content

Commit

Permalink
fix: removed unnecessary borders
Browse files Browse the repository at this point in the history
  • Loading branch information
Srish-ty committed Mar 10, 2024
1 parent d2728d2 commit 1fbce6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/form/FormContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { feeCoverage, initialContent, inputContent, lastPartContent } from '../.

const FormContainer = () => {
return (
<div className='text-white bg-black flex flex-col md:flex-row justify-between' style={{ border: '1px solid aqua' }}>
<div id='info' className='w-[90%] md:w-[45%] m-8 p-2' style={{ border: '1px solid red' }}>
<div className='text-white bg-black flex flex-col md:flex-row justify-between'>
<div id='info' className='w-[90%] md:w-[45%] m-8 p-2'>
{initialContent.map((item, index) =>
index == 0 ? (
<Paragraph variant='body3' key={index}>
Expand Down Expand Up @@ -49,7 +49,7 @@ const FormContainer = () => {
</Paragraph>
</div>

<div id='form' className='w-[90%] md:w-[53%] m-8 p-2' style={{ border: '1px solid red' }}>
<div id='form' className='w-[90%] md:w-[55%] m-8 p-2'>
{inputContent.map((item, index) => (
<React.Fragment key={index}>
<Paragraph
Expand Down

0 comments on commit 1fbce6f

Please sign in to comment.