File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ module LinkCard = {
20
20
let make = (~link ) => {
21
21
<div className = "rounded-lg hover:text-fire overflow-hidden bg-gray-10 border-2 border-gray-30" >
22
22
<a href = link .url className = "flex flex-col h-full" >
23
- <img className = "object-cover w-full md :h-40 max-h-[345px]" src = link .image alt = "" />
23
+ <img className = "object-cover w-full lg :h-40 max-h-[345px]" src = link .image alt = "" />
24
24
<div className = "p-3 md:p-5 grow" >
25
25
<h3 className = "font-semibold text-16 grow-0 mb-2" > {React .string (link .title )} </h3 >
26
26
<p className = "mb-2 text-14 grow text-gray-80" > {React .string (link .description )} </p >
@@ -36,7 +36,7 @@ module LinkCard = {
36
36
module LinkCards = {
37
37
@react.component
38
38
let make = () => {
39
- <div className = "grid md :grid-cols-2 gap-6" >
39
+ <div className = "grid lg :grid-cols-2 gap-6" >
40
40
{resources
41
41
-> Array .map (link =>
42
42
switch link .image {
You can’t perform that action at this time.
0 commit comments