Skip to content

Commit

Permalink
fix images
Browse files Browse the repository at this point in the history
  • Loading branch information
GiseleBr678 committed May 11, 2024
1 parent a4a2fa3 commit d913fb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function About() {
photo: "./assets/thiago.jpg",
},
];
//comment
//comment
return (
<div className="bg-main-darker text-white min-h-screen flex flex-col">
<Menu />
Expand Down Expand Up @@ -108,7 +108,7 @@ export default function About() {

<h2 className="text-2xl font-semibold mb-4">Conheça a Equipe:</h2>

<div className="grid grid-cols-2 md:grid-cols-7 gap-6">
<div className="grid grid-cols-2 md:grid-cols-4 limit:grid-cols-7 gap-6">
{teamMembers.map((member, index) => (
<div key={index} className="text-center">
<img
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
screens: {
limit: "1190px",
},
colors: {
main: {
darker: "#000624",
Expand Down

0 comments on commit d913fb1

Please sign in to comment.