Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Shan-Weaviate committed Nov 14, 2024
1 parent 0e14780 commit 23c6b83
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
10 changes: 7 additions & 3 deletions src/components/Home/Redesign/Header/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@
@media screen and (max-width: 950px) {
display: flex;
flex-grow: 1;
overflow-x: hidden;
column-gap: 20px;

gap: 20px;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
min-width: 330px;
margin-bottom: 20px;
}

@keyframes scrollSideCustomers {
Expand Down Expand Up @@ -190,6 +191,9 @@
@media screen and (max-width: 950px) {
margin-bottom: 33px;
}
@media screen and (max-width: 600px) {
margin-bottom: 0;
}
}

.innerBar > p {
Expand Down Expand Up @@ -260,7 +264,7 @@
background-position: center;

width: 8rem;
height: 6rem;
height: 5rem;
}
.redbull {
background-image: url('/img/site/redbull-hp-logo.svg');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,15 @@
align-items: center;
scroll-snap-align: center;
margin: 0 10px;

@media screen and (max-width: 500px) {
width: 12.375rem;
}

@media screen and (max-width: 400px) {
width: 8.375rem;
height: 4.9375rem;
}
}

.inside {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
right: 0;
top: 0;

@media screen and (max-width: 500px) {
opacity: 0.8;
@media screen and (max-width: 600px) {
opacity: 0.5;
}
}

Expand Down Expand Up @@ -96,8 +96,13 @@
justify-content: center;
align-content: center;

@media screen and (max-width: 500px) {
width: 10.375rem;
@media screen and (max-width: 600px) {
width: 12.375rem;
}

@media screen and (max-width: 400px) {
width: 8.375rem;
height: 4.9375rem;
}
}

Expand Down Expand Up @@ -198,7 +203,7 @@
}

.buttonDark {
width: 11.1875rem;
width: 12.1875rem;
height: 3.125rem;
flex-shrink: 0;
border-radius: 0.375rem;
Expand Down
1 change: 0 additions & 1 deletion src/components/Home/Redesign/IntegrationsUpdate/v2.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import JoinCommunity from '../JoinCommunityUpdate';
import partners from '/data/partners.json';

export default function HomepageIntegrations() {
// Filter the featured partners
const featuredPartners = partners.filter((partner) => partner.featured);

return (
Expand Down

0 comments on commit 23c6b83

Please sign in to comment.