Skip to content

Commit

Permalink
feat: update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
missionmike committed Oct 25, 2024
1 parent 8dacc04 commit 2589488
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/components/sections/WorkExperience/Projects.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;

&::before {
display: none;
}

&::after {
content: "+";
content: "⬇️";
font-size: 1rem;
display: block;
position: absolute;
top: calc(50% - 1rem);
right: 1em;
right: 0;
opacity: 1;
transform: rotate(0deg) scale(1);
transition: all 1.2s;
color: green;
}

&:global(.Mui-expanded) {
Expand All @@ -22,7 +27,7 @@

&::after {
opacity: 0;
transform: rotate(360deg) scale(2);
transform: rotate(180deg) scale(2);
}
}

Expand Down

0 comments on commit 2589488

Please sign in to comment.