| 1 |
import { styled } from '@linaria/react'; |
| 2 |
|
| 3 |
interface IElementorWrapperProps { |
| 4 |
pluginPath?: string; |
| 5 |
} |
| 6 |
|
| 7 |
export default styled.div<IElementorWrapperProps>` |
| 8 |
background-image: ${props => |
| 9 |
`url(${props.pluginPath}/plugin/assets/images/hubspot.svg)`}; |
| 10 |
background-color: #f5f8fa; |
| 11 |
background-repeat: no-repeat; |
| 12 |
background-position: center 25px; |
| 13 |
background-size: 120px; |
| 14 |
color: #33475b; |
| 15 |
font-family: 'Lexend Deca', Helvetica, Arial, sans-serif; |
| 16 |
font-size: 14px; |
| 17 |
|
| 18 |
padding: ${(props: any) => props.padding || '90px 20% 25px'}; |
| 19 |
|
| 20 |
p { |
| 21 |
font-size: inherit !important; |
| 22 |
line-height: 24px; |
| 23 |
margin: 4px 0; |
| 24 |
} |
| 25 |
`; |
| 26 |
|