Skip to content

Commit 1555b26

Browse files
committed
fixed the max-width of the cards
1 parent 901de96 commit 1555b26

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/components/cards/StackCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import BodyOne from "../typography/BodyOne"
55
import NewTab from "../../images/launch.svg"
66
const StackCard = ({ Title, className, url, linkURL }) => (
77
<div
8-
className={`${className} cursor-pointer shadow-lg rounded-lg flex flex-col p-10 p- ml-10 h-200 max-w-3xl bg-white`}
8+
className={`${className} cursor-pointer shadow-lg rounded-lg flex flex-col p-10 p- ml-10 h-200 max-w-7xl bg-white`}
99
>
1010
<img src={url} alt="card logo" className="h-16 mb-3" />
1111
<HeadingThree>{Title}</HeadingThree>

tailwind.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,9 @@ module.exports = {
367367
"4xl": "56rem",
368368
"5xl": "64rem",
369369
"6xl": "72rem",
370+
"7xl": "60%",
370371
full: "100%",
372+
371373
...breakpoints(theme("screens")),
372374
}),
373375
},

0 commit comments

Comments
 (0)