@include inlineList;
flex-wrap: nowrap;
+
+ > li{
+ &:not(:last-child) {
+ margin-right: 0;
+ }
+
+ &:not(:first-child) {
+ margin-left: 5px;
+ }
+ }
}
}
}
}
}
}
+
+/* workaround for ancient screen resolutions */
+@media (max-width: 1280px) {
+ .contentHeaderNavigation {
+ flex: 1 1 0%;
+
+ > ul {
+ flex-wrap: wrap !important;
+ justify-content: flex-end;
+ }
+ }
+}
+
+/* sidebar galore */
+@include screen-lg {
+ .sidebar + .content:not(:last-child) {
+ .contentHeaderNavigation {
+ flex: 1 1 0%;
+
+ > ul {
+ flex-wrap: wrap !important;
+ justify-content: flex-end;
+ }
+ }
+ }
+}