_sass: navigation: adjust link positioning
This commit is contained in:
parent
cb69e85b48
commit
d0db862121
1 changed files with 12 additions and 3 deletions
|
@ -236,9 +236,11 @@
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-box-pack: end;
|
/* hacks-guide change start: s/end/start */
|
||||||
-ms-flex-pack: end;
|
-webkit-box-pack: start;
|
||||||
justify-content: flex-end;
|
-ms-flex-pack: start;
|
||||||
|
justify-content: flex-start;
|
||||||
|
/* hacks-guide change end */
|
||||||
-webkit-box-flex: 1;
|
-webkit-box-flex: 1;
|
||||||
-ms-flex: 1;
|
-ms-flex: 1;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
@ -338,6 +340,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* hacks-guide change start: adjust links-menu position */
|
||||||
|
.links-menu {
|
||||||
|
right: 2rem;
|
||||||
|
}
|
||||||
|
/* hacks-guide change end */
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-js {
|
.no-js {
|
||||||
|
|
Loading…
Reference in a new issue