From 408e57eeb5c8f03f4fcc727b1abab5aad44f7305 Mon Sep 17 00:00:00 2001 From: Celeste Robert <celeste@lydra.fr> Date: Tue, 4 Mar 2025 16:54:07 +0100 Subject: [PATCH] test: borders on profile pictures --- src/components/HomepageTeam/styles.module.css | 3 ++- src/css/custom.css | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/HomepageTeam/styles.module.css b/src/components/HomepageTeam/styles.module.css index 7b233dc..a497238 100644 --- a/src/components/HomepageTeam/styles.module.css +++ b/src/components/HomepageTeam/styles.module.css @@ -2,7 +2,6 @@ display: flex; align-items: center; padding: 2rem 0; - width: 100%; } @@ -11,6 +10,8 @@ width: 200px; border-radius: 50%; margin-bottom: 1rem; + border: 6px solid var(--ifm-color-primary); + background-color: var(--alterning-bkg); } .featureElement { diff --git a/src/css/custom.css b/src/css/custom.css index 05d2760..0eceb54 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -121,7 +121,7 @@ section:nth-child(even) { } .team .feature:nth-child(4n+1) img { - background-color: var(--ifm-pastel-success) + border: 6px solid var(--ifm-color-success); } .team .feature:nth-child(4n+1) h3 { @@ -129,7 +129,7 @@ section:nth-child(even) { } .team .feature:nth-child(4n+2) img { - background-color: var(--ifm-pastel-info); + border: 6px solid var(--ifm-color-info); } .team .feature:nth-child(4n+2) h3 { @@ -137,7 +137,7 @@ section:nth-child(even) { } .team .feature:nth-child(4n+3) img, .team .feature:nth-child(4n+4) img { - background-color: var(--ifm-pastel-highlight); + border: 6px solid var(--ifm-color-highlight); } .team .feature:nth-child(4n+3) h3, .team .feature:nth-child(4n+4) h3 { -- GitLab