Skip to content

Commit

Permalink
still struggling with drop down open
Browse files Browse the repository at this point in the history
  • Loading branch information
JarUml committed Oct 23, 2023
1 parent b52ace9 commit 67f9a2e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Frontend/algoverse/src/components/Logo.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.HomeLogo{
width: 160px;
height: 90px;
width: 176px;
height: 99px;
border-radius: 20rem;
background-color: #1A1A5B;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
36 changes: 36 additions & 0 deletions Frontend/algoverse/src/components/SideBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,42 @@
align-self: center;
}


.arrow-container{
align-self: flex-end;
}

.expand-arrow{

}

.hover15 expand-arrow:hover::before {
-webkit-animation: circle .75s;
animation: circle .75s;
}
@-webkit-keyframes circle {
0% {
opacity: 1;
}
40% {
opacity: 1;
}
100% {
width: 200%;
height: 200%;
opacity: 0;
}
}
@keyframes circle {
0% {
opacity: 1;
}
40% {
opacity: 1;
}
100% {
width: 200%;
height: 200%;
opacity: 0;
}
}
2 changes: 1 addition & 1 deletion Frontend/algoverse/src/components/SideBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function SideBar() {
<img
src="images/TreeSearch-img.png"
alt="treesearch-icon"
height="30px"
height="40px"
width="30px"
className="tree-icon" />
</div>
Expand Down

0 comments on commit 67f9a2e

Please sign in to comment.