add amoozesh link to navbar on desktop

This commit is contained in:
HAM!DREZA
2025-02-11 18:51:04 +03:30
parent 83d6fe0df1
commit f11ea01dcd
3 changed files with 87 additions and 8 deletions
+70 -1
View File
@@ -53,7 +53,7 @@
display: flex;
justify-content: center;
align-items: center;
padding-right: 50px;
li {
margin: 0 10px;
@@ -169,4 +169,73 @@
}
}
}
.dropDown-container {
position: relative;
cursor: pointer;
i {
display: inline-block;
@extend %defaultTransition;
}
&.d-active {
i {
@include transform(rotate(180deg));
}
.drop-down {
height: 113px;
border-top: 1px solid rgba(#fff, 0.1);
}
&.agents {
.drop-down {
height: 169px;
}
}
&.gps{
.drop-down {
height: 169px;
}
}
&.help{
.drop-down {
height: 65px !important;
}
}
&.contactus {
.drop-down {
height: 290px;
}
}
}
.drop-down {
position: absolute;
top: 65px;
right: -5px;
background: $theme;
min-width: 160px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
overflow: hidden;
height: 0;
@extend %defaultTransition;
a {
display: block;
padding: 15px 20px;
&:hover {
background: rgba(#fff, 0.05);
}
&.active {
background: rgba(#fff, 0.1);
}
}
}
}
}