Skip to content

Commit b84ad2f

Browse files
committed
About: navy bg for values section; white card text + white icons
1 parent 904da6e commit b84ad2f

3 files changed

Lines changed: 14 additions & 1 deletion

File tree

src/components/about/styles.module.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@
3232
margin-bottom: var(--ifm-spacing-lg);
3333
}
3434

35+
:global([data-section-bg="dark"]) .value_icon svg {
36+
filter: brightness(0) invert(1);
37+
}
38+
39+
:global([data-section-bg="dark"]) .value_header {
40+
color: white;
41+
}
42+
43+
:global([data-section-bg="dark"]) .value_text p {
44+
color: white;
45+
}
46+
3547
.value_text p {
3648
font-family: var(--ifm-font-family-roboto);
3749
font-size: 14px;

src/css/custom.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ ul {
321321
display: none;
322322
}
323323

324+
324325
/***********************************************************/
325326

326327
.link-to-button {

src/pages/about/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function AboutContent() {
3434
<ScrollDownCTA />
3535
</div>
3636
</Section>
37-
<Section bg="light-blue">
37+
<Section bg="dark">
3838
<h2>Our <span className="highlight">values</span></h2>
3939
<CardGrid cols={4}>
4040
{valuesDetails.map((value, index) => (

0 commit comments

Comments
 (0)