Skip to content

Commit

Permalink
CORE-5091: labs page updates (#1294)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekachxaidze98 authored Jan 31, 2025
1 parent 23faaf0 commit 591c3c4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pages/innovations/labs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ const LabsPage = ({ page }) => (
image={page.header.header.hero}
title={page.header.header.title}
description={page.header.header.description}
className={styles.labHero}
/>
<div className={styles.features}>
{page.services.features &&
Expand Down
19 changes: 16 additions & 3 deletions pages/innovations/labs.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,24 @@
}
.features {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
grid-template-columns: repeat(2, 1fr);
grid-gap: 1rem;

@media (max-width: 768px) {
grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.card {
padding: 2rem;
background-color: var(--gray-100);
display: flex;
flex-direction: column;
min-height: 29rem;
min-height: 20rem;
.header-wrapper {
display: flex;
justify-content: space-between;
gap: 10px;
align-items: center;
margin-bottom: 22px;
}
.tag {
padding: 3px 7px;
Expand Down Expand Up @@ -126,3 +131,11 @@
}
}
}

.lab-hero {
div:nth-child(2) {
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
}

0 comments on commit 591c3c4

Please sign in to comment.