fix(core): update

This commit is contained in:
2020-05-23 17:13:09 +00:00
parent 1c844d35ca
commit ec36a516c0
3 changed files with 33 additions and 5 deletions

7
ts/domtools.css.ts Normal file
View File

@ -0,0 +1,7 @@
export const cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number) => {
let returnString = ``;
for (let i = 0; i < amountOfColumnsArg; i++) {
returnString += ` calc((100%/${amountOfColumnsArg}) - (${gapSizeArg * (amountOfColumnsArg - 1)}px/${amountOfColumnsArg}))`;
}
return returnString;
};