# leadin/11.0.31/scripts/shared/UIComponents/UIOverlay.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.0.31. 15 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.0.31/code/scripts/shared/UIComponents/UIOverlay.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.0.31/raw/scripts/shared/UIComponents/UIOverlay.ts
- Modified: 2024-03-27T10:17:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/leadin/11.0.31/code/scripts/shared/UIComponents/UIOverlay.ts#L10-L20`.

```typescript
import { styled } from '@linaria/react';

export default styled.div`
  position: relative;

  &:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
`;

```
