make minimal width 2 times smaller then default

This commit is contained in:
Andray
2024-02-29 16:02:21 +04:00
parent 51cc1ff2c9
commit eb0b84c564
4 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@
parent.needHideOnMoblie = true;
} else {
leftColTemplate = parent.children[0].style.flexBasis;
parent.minLeftColWidth = parent.children[0].style.flexBasis.slice(0, -2);
parent.minLeftColWidth = parent.children[0].style.flexBasis.slice(0, -2) / 2;
parent.minRightColWidth = 0;
parent.needHideOnMoblie = false;
}