Expand arrow

This commit is contained in:
Eden Kirin
2022-12-20 09:21:58 +01:00
parent 242d81a339
commit bda4d64904
3 changed files with 15 additions and 1 deletions

View File

@ -82,6 +82,8 @@ nav.main {
a.icon {
position: relative;
padding-left: $icon-width;
display: flex;
align-items: center;
&::before {
content: "";
@ -113,6 +115,15 @@ nav.main {
&.icon-warehouse-management::before {
background-image: url("/img/menu-icons/dashboard.svg");
}
&::after {
content: "";
margin-left: auto;
width: 18px;
height: 18px;
display: block;
background-repeat: no-repeat;
background-image: url("/img/menu-icons/menu-arrow.svg");
}
}
}
}