diff --git a/img/menu-icons/menu-arrow.svg b/img/menu-icons/menu-arrow.svg
new file mode 100644
index 0000000..f25a581
--- /dev/null
+++ b/img/menu-icons/menu-arrow.svg
@@ -0,0 +1,3 @@
+
diff --git a/index.html b/index.html
index ce0990a..0d4cc7e 100644
--- a/index.html
+++ b/index.html
@@ -43,6 +43,7 @@
+
Reporting
- Product Warehouse
diff --git a/style.scss b/style.scss
index 52def7b..bf6124e 100644
--- a/style.scss
+++ b/style.scss
@@ -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");
+ }
}
}
}