We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24ea55 commit db0b266Copy full SHA for db0b266
1 file changed
app/research/page.tsx
@@ -59,15 +59,15 @@ export default function Research() {
59
{research.map((research, index) => (
60
<div key={index}>
61
<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">
+ <div className="flex flex-col md:flex-row justify-between items-center mx-auto">
63
{index % 2 === 0 ? (
64
<>
65
{research.image ? (
66
<img
67
src={`/img/research/${research.image}`}
68
alt={research.title}
69
className="rounded-lg mr-5"
70
- style={{ width: "900px", height: "auto" }}
+ style=style={{ width: "100%", height: "auto" }}
71
/>
72
) : (
73
<div className="rounded-lg w-96 h-56 bg-gray-300 flex items-center justify-center mr-5">
0 commit comments