Skip to content
Snippets Groups Projects
Commit 842915d4 authored by Claas Kazzer's avatar Claas Kazzer :speech_balloon: Committed by Frank Morgner
Browse files

refs #12710

* fixes flexbox ordering issue and limits reorder to header only
parent 26466622
No related merge requests found
......@@ -673,14 +673,16 @@ table.collapse.in {
}
}
//// we need to reverse order of the child elements (searchbox + navbar) on anything but mobile for the mobile menu to work as xpected
//// we need to reverse order of the header child elements (searchbox + navbar) on anything but mobile for the mobile menu to work as xpected
@media (min-width: $screen-sm-min) {
.flex-container > *:first-child {
order: 2;
}
header .flex-container {
> *:first-child {
order: 2;
}
.flex-container > *:nth-child(2) {
order: 1;
> *:nth-child(2) {
order: 1;
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment