Window Styles
ts
interface Window {
background?: CSSProperties['background']
border?: CSSProperties['border']
borderRadius?: CSSProperties['borderRadius']
marginBottom?: CSSProperties['marginBottom']
marginLeft?: CSSProperties['marginLeft']
marginRight?: CSSProperties['marginRight']
marginTop?: CSSProperties['marginTop']
padding?: CSSProperties['padding']
width?: CSSProperties['width']
}Preview

background
- Type:
CSSProperties['background'] - Default:
#fff - Description: Specifies the background of the window.
border
- Type:
CSSProperties['border'] - Description: Specifies the border of the window.
- Default:
0
borderRadius
- Type:
CSSProperties['borderRadius'] - Default:
24px - Description: Specifies the border radius of the window.
marginBottom
- Type:
CSSProperties['marginBottom'] - Default:
24px - Description: Specifies the bottom margin of the window.
marginLeft
- Type:
CSSProperties['marginLeft'] - Default:
48px - Description: Specifies the left margin of the window.
marginRight
- Type:
CSSProperties['marginRight'] - Default:
48px - Description: Specifies the right margin of the window.
marginTop
- Type:
CSSProperties['marginTop'] - Default:
24px - Description: Specifies the top margin of the window.
padding
- Type:
CSSProperties['padding'] - Default:
24px - Description: Specifies the padding of the window.
width
- Type:
CSSProperties['width'] - Default:
500px - Description: Specifies the width of the window.