I'm looking for advice on how to position <Tabs
within an AppBar at the bottom of a parent container, effectively placing them at the bottom of the header. Currently, I have divided the header into three sections: top-bar-left, top-bar-tabs, and top-bar-right. To achieve this layout, I have applied the following styles to the parent element of the tabs:
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
While this solution works, I am unsure if it is considered the best practice for material-ui implementation.