fixes: The height of the tabs bar also collapses entirely when in reorder mode without any tabs

This commit is contained in:
Mads Rasmussen
2021-08-05 21:17:21 +02:00
parent 6650ebd6d2
commit c03eec8a11

View File

@@ -1,3 +1,5 @@
@umbGroupBuilderToolbarHeight: 60px;
/* ---------- TOOLBAR --------- */
.umb-group-builder__toolbar {
display: flex;
@@ -7,6 +9,7 @@
margin-left: -20px;
width: calc(100% + 40px);
margin-top: -20px;
height: @umbGroupBuilderToolbarHeight;
.left {
flex: 1 1 auto;
@@ -23,7 +26,7 @@
/* ---------- TABS ---------- */
.umb-group-builder__tabs {
height: 60px;
height: @umbGroupBuilderToolbarHeight;
position: relative;
}