Skip to content

Commit

Permalink
fix: images positions
Browse files Browse the repository at this point in the history
  • Loading branch information
Srish-ty committed Mar 13, 2024
1 parent 1616475 commit feee6f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Paragraph } from './shared/typography';
const Hero = () => {
return (
<>
<div className='flex flex-col md:flex-row '>
<div className='flex flex-col md:flex-row'>
<div className='w-[100%] md:w-1/2 1'>
<div className='h-1/3 flex flex-col justify-end ml-2' style={{ color: '#FF4409' }}>
<PersonalizedText>Welcome family...</PersonalizedText>
Expand All @@ -30,7 +30,7 @@ const Hero = () => {
</div>
<div className='w-[100%] md:w-1/2 flex items-center relative' style={{ height: '600px' }}>
<div
className='absolute top-50 right-200'
className='absolute top-50 left-10'
style={{
borderRadius: '6px',
border: '1px solid #000',
Expand All @@ -52,7 +52,7 @@ const Hero = () => {
/>
</div>
<div
className='absolute top-50 left-10'
className='absolute top-50 left-40'
style={{
borderRadius: '6px',
border: '1px solid #000',
Expand Down Expand Up @@ -114,7 +114,7 @@ const Hero = () => {
</svg>
</div>
<div
className='absolute top-55 right-40'
className='absolute top-55 right-20'
style={{
borderRadius: '6px',
border: '1px solid #000',
Expand Down

0 comments on commit feee6f7

Please sign in to comment.