ordered lang in first position to avoid missplacement
This commit is contained in:
parent
f1432bc8d0
commit
c640648331
|
@ -163,6 +163,7 @@
|
|||
.main-navigation,.secondary-navigation {
|
||||
ul {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
.menu-item-has-children > ul {
|
||||
background-color: rgba(255,255,255,0.95);
|
||||
}
|
||||
|
@ -201,11 +202,15 @@
|
|||
}
|
||||
}
|
||||
li {
|
||||
padding: 0 1em;
|
||||
&:hover > ul,
|
||||
&.focus > ul {
|
||||
padding: 0 1em;
|
||||
order: 2;
|
||||
&:hover > ul,
|
||||
&.focus > ul {
|
||||
left: auto;
|
||||
}
|
||||
&.lang-item {
|
||||
order: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue