mirror of
https://github.com/docmost/docmost.git
synced 2026-05-16 14:14:06 +08:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
export function getColStyleDeclaration(minWidth: number, width: number | undefined): [string, string] {
|
|
if (width) {
|
|
return ['width', `${Math.max(width, minWidth)}px`]
|
|
}
|
|
|
|
return ['min-width', `${minWidth}px`]
|
|
}
|