add amoozesh link to navbar on desktop
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user