Skip to content

Commit

Permalink
resolved the hover effect
Browse files Browse the repository at this point in the history
Signed-off-by: Vamshi Reddy <[email protected]>
  • Loading branch information
VamshiReddy02 committed Sep 22, 2023
1 parent e52bf97 commit 9fe9221
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions src/components/ScenarioCard/ScenarioCard.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,19 @@ export const ScenarioCardWrapper = styled.div`
}
.sub-content {
display:flex;
display:flex;
color: white;
.ak {
color: ${props => props.theme.linkColor};
&:hover {
color: white;
}
}
justify-content:center;
margin-top:4rem;
width:100%;
color: white;
}
.active {
display: blwock;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ScenarioCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const Card = ({ title, info, courseLink, link, cover, content, embed, subId, ID,

<div className={content && subId === ID ? "active" : "text-contents"}>
<div className="sub-content">
Sign into the&nbsp;<a href="https://playground.meshery.io">Meshery Playground</a>&nbsp;(free account) to continue your lab.
Sign into the&nbsp;<a className="ak" href="https://playground.meshery.io">Meshery Playground</a>&nbsp;(free account) to continue your lab.
{/*
<div id="katacoda-scenario"
data-katacoda-id={`${courseLink}/${embed}`}
Expand Down

0 comments on commit 9fe9221

Please sign in to comment.