excalidraw/src/css.d.ts
Lipis facde7ace0
Fix padding in the library loading buttons (#2331)
* Fix padding in the library loading buttons

* Update src/components/Stack.tsx

Co-authored-by: Dominic Lee <34794189+dominictwlee@users.noreply.github.com>

* extend CSSProperties TS definition

Co-authored-by: Dominic Lee <34794189+dominictwlee@users.noreply.github.com>
Co-authored-by: dwelle <luzar.david@gmail.com>
2020-11-04 11:05:12 +01:00

11 lines
211 B
TypeScript

import "csstype";
declare module "csstype" {
interface Properties {
"--max-width"?: number | string;
"--swatch-color"?: string;
"--gap"?: number | string;
"--padding"?: number | string;
}
}