<div style="height: calc(100vh - 48px)">
<gridster _ngcontent-ng-c297981872="" id="gridster" ng-reflect-options="[object Object]" class="scrollVertical" style="padding: 15px;">...</gridster>
<div>
return {
gridType: 'verticalFixed',
columns: 12,
minRows: 1,
maxRows: 100,
margin: margin,
minCols: 2,
fixedRowHeight: mdRowHeight,
compactType: 'none',
displayGrid: 'none'
};
const mdRows = 3;
const mdRowHeight = Math.floor((availableHeight - margin * (mdRows + 1)) / mdRows);
And I try to calucate and add heigt for gridster, but will be cover by the style="padding: 15px;"
Can some one give me some advice?