Skip to content

Commit

Permalink
Merge pull request #50 from NjNerson/OrganizersPartners
Browse files Browse the repository at this point in the history
Organizers partners
  • Loading branch information
Ntsoa2112 authored Jun 1, 2024
2 parents 178737a + a716699 commit 6a1b0ed
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 25 deletions.
4 changes: 2 additions & 2 deletions src/components/organizersPartners/Associate.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export default function Associate({ associate, ind }) {
return (
<li key={ind} className="m-8">
<li key={ind} className="lg:m-8 m-4">
<img
draggable="false"
loading="lazy"
src={associate.image}
alt={associate.nom}
className=" max-w-64 h-24 object-contain block "
className="max-w-64 h-24 object-contain block "
/>
</li>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/organizersPartners/Title.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default function Title({ children }) {
return (
<h2 className="text-white text-[1.5rem] md:text-[2rem] leading-10 text-center uppercase tracking-wide">
<h2 className="text-white text-[1.5rem] md:text-[2rem] leading-10 text-center uppercase tracking-wide pb-3">
{children}
</h2>
);
Expand Down
2 changes: 1 addition & 1 deletion src/scenes/OrganizersPartners.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Associate from "../components/organizersPartners/Associate";
//ORGANISATEURS ET PARTENAIRES
function OrganizersPartners() {
return (
<section className=" bg-background py-[7.5rem] px-20 font-DMMono">
<section className=" bg-background py-[7.5rem] lg:px-20 font-DMMono">
{/* SEPARATOR */}
<div className=" mx-auto md:h-3 h-2 mb-16 box-border border-dashed border-y-2 opacity-10 text-raven "></div>
{/*ORGANISATEURS*/}
Expand Down
43 changes: 22 additions & 21 deletions src/styles/App.css
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
.top-section {
background: #0057a8;
background: linear-gradient(207deg, #04315c 0%, rgb(1, 15, 22) 100%);
background: #0057a8;
background: linear-gradient(207deg, #04315c 0%, rgb(1, 15, 22) 100%);
}




.Kontes-Compressed{
font-family: "Kontes-Compressed";
.Kontes-Compressed {
font-family: "Kontes-Compressed";
}
.Kontes-Compressed-Bold{
font-family: "Kontes-CompressedBold";
.Kontes-Compressed-Bold {
font-family: "Kontes-CompressedBold";
}

.color-yellow-sea {
color: #EEA736;
color: #eea736;
}

.color-raven{
color: #6C757D;
.color-raven {
color: #6c757d;
}

.nav-list {
color: #fff;
font-weight: 400;
font-family: "DMMono-Light";
font-size: 20px;
text-decoration: none;
color: #fff;
font-weight: 400;
font-family: "DMMono-Light";
font-size: 20px;
text-decoration: none;
}
/* .backtitle{
font-size: 98px;
Expand All @@ -36,7 +33,11 @@ text-align: left;
} */

.gradientBg{
background: rgb(2,15,19);
background: linear-gradient(61deg, rgba(2,15,19,1) 0%, rgba(17,86,166,1) 100%);
}
.gradientBg {
background: rgb(2, 15, 19);
background: linear-gradient(
61deg,
rgba(2, 15, 19, 1) 0%,
rgba(17, 86, 166, 1) 100%
);
}

0 comments on commit 6a1b0ed

Please sign in to comment.