Files
datacontroller.io/src/styledComponents/contact.js
T
2024-06-05 15:53:46 +02:00

18 lines
386 B
JavaScript

import styled from 'styled-components'
export const StyledHeading = styled.h3`
font-family: 'Montserrat', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial,
sans-serif;
`
export const StyledLabel = styled.label`
margin-bottom: 0;
`
export const ContactBackground = styled.img.attrs((props) => ({
alt: props.info || '',
title: props.info || ''
}))`
max-width: 100%;
`