_sass: navigation: adjust link positioning

This commit is contained in:
lifehackerhansol 2024-01-13 15:15:34 -08:00
parent cb69e85b48
commit d0db862121
No known key found for this signature in database
GPG key ID: 80FB184AFC0B3B0E

View file

@ -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 {