From e52bf9720f48d2e036b3816db328ce8946e54a6f Mon Sep 17 00:00:00 2001 From: Vamshi Reddy Date: Sat, 16 Sep 2023 16:14:09 +0530 Subject: [PATCH 1/3] fixing the full text for call to action not visible in light mode Signed-off-by: Vamshi Reddy --- src/components/ScenarioCard/ScenarioCard.style.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ScenarioCard/ScenarioCard.style.js b/src/components/ScenarioCard/ScenarioCard.style.js index 971a6e7802e2..78bd3b9b2deb 100644 --- a/src/components/ScenarioCard/ScenarioCard.style.js +++ b/src/components/ScenarioCard/ScenarioCard.style.js @@ -78,6 +78,7 @@ export const ScenarioCardWrapper = styled.div` justify-content:center; margin-top:4rem; width:100%; + color: white; } .active { From 824488eb8a9da2cc6cbc1a9e7b7951f29b4466ee Mon Sep 17 00:00:00 2001 From: Vamshi Reddy Date: Fri, 22 Sep 2023 14:47:42 +0530 Subject: [PATCH 2/3] fixed full text for sign into call to action not visible in light mode Signed-off-by: Vamshi Reddy --- src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js b/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js index 937a0de679c7..15e85e2cb308 100644 --- a/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js +++ b/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js @@ -56,6 +56,7 @@ const LabSinglePageWrapper = styled.div` } .cardContent { margin: 0 5rem; + color: white; } #katacoda-scenario { min-height: 25rem; From 4b6acdbf4754c934cf631615072aa3250f16619f Mon Sep 17 00:00:00 2001 From: Vamshi Reddy Date: Fri, 22 Sep 2023 17:21:17 +0530 Subject: [PATCH 3/3] resolved the hover effect Signed-off-by: Vamshi Reddy --- src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js b/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js index 15e85e2cb308..1ae652a257b2 100644 --- a/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js +++ b/src/sections/Learn/Lab-single/LabSinglePageWrapper.style.js @@ -57,6 +57,12 @@ const LabSinglePageWrapper = styled.div` .cardContent { margin: 0 5rem; color: white; + a { + display: flex; + color: ${props => props.theme.linkColor}; + &:hover{ + color: white; + } } #katacoda-scenario { min-height: 25rem;