Skip to content

Commit

Permalink
Adjust Edu svg effect
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-rajan committed Aug 15, 2024
1 parent 74647aa commit 0ebeaec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/SvgComponent1.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import react from "react";
export default function SvgComponent1(props) {

let svgStyle = {
stroke: (props.currentEdu == 0 || props.currentEdu == 1) ? "#4493f8" : "grey",
stroke: (props.currentEdu == 0) ? "#4493f8" : "grey",
strokeWidth: "10px",
fill: "transparent",
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/SvgComponent2.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import react from "react";
export default function SvgComponent2(props) {

const svgStyle = {
stroke: (props.currentEdu == 1 || props.currentEdu == 2) ? "#4493f8" : "grey",
stroke: (props.currentEdu == 0 || props.currentEdu == 1) ? "#4493f8" : "grey",
strokeWidth: "4px",
fill: "transparent",
};
Expand Down

0 comments on commit 0ebeaec

Please sign in to comment.