Skip to content

Commit db0b266

Browse files
authored
Update page.tsx
Remove width contraint
1 parent f24ea55 commit db0b266

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/research/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ export default function Research() {
5959
{research.map((research, index) => (
6060
<div key={index}>
6161
<div className="flex flex-col w-full my-2">
62-
<div className="flex flex-col md:flex-row justify-between items-center w-3/4 mx-auto">
62+
<div className="flex flex-col md:flex-row justify-between items-center mx-auto">
6363
{index % 2 === 0 ? (
6464
<>
6565
{research.image ? (
6666
<img
6767
src={`/img/research/${research.image}`}
6868
alt={research.title}
6969
className="rounded-lg mr-5"
70-
style={{ width: "900px", height: "auto" }}
70+
style=style={{ width: "100%", height: "auto" }}
7171
/>
7272
) : (
7373
<div className="rounded-lg w-96 h-56 bg-gray-300 flex items-center justify-center mr-5">

0 commit comments

Comments
 (0)