1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/utils/styles/scaling.ts
2022-12-18 20:25:52 +01:00

4 lines
125 B
TypeScript

const adaptiveScale = (size: number, factor: number = 0) => Math.round(size + size * (factor / 8))
export { adaptiveScale }