Skip to content

Commit 20ea306

Browse files
committed
feat: Made hero area modal
1 parent ae53f9c commit 20ea306

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/components/HeroAreaModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function HeroAreaModal({ open, onClose }: { open: boolean; onClose: () =>
1515

1616
<div className="flex items-center w-full justify-between">
1717
<div className="flex justify-center items-center w-1/2 h-full">
18-
<img src="/my-image.png" alt="placeholder" className="rounded-full w-80 h-80" />
18+
<img src="/my-image.png" alt="placeholder" className="rounded-full lg:w-64 lg:h-64 xl:w-80 xl:h-80" />
1919
</div>
2020
<div className="w-1/2">
2121
<div className=" font-bold h2">

frontend/src/main.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from 'react'
22
import ReactDOM from 'react-dom/client'
33
import App from './App.tsx'
4-
import './styles/index.css'
4+
import './styles/index.css'
55

66
ReactDOM.createRoot(document.getElementById('root')!).render(
77
<React.StrictMode>
8-
<App />
8+
<App />
99
</React.StrictMode>,
1010
)

0 commit comments

Comments
 (0)