You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
spa_instat_tv/src/features/CompanyInfo/styled.tsx

21 lines
490 B

import styled, { css } from 'styled-components/macro'
import { isMobileDevice } from 'config/userAgent'
export const CompanyInfoWrapper = styled.div`
margin-top: auto;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 12px;
line-height: 15px;
color: rgba(255, 255, 255, 0.6);
${isMobileDevice ? css`
margin-top: 20px;
` : ''}
`
export const CompanyName = styled.div`
color: rgba(255, 255, 255, 0.8);
`
export const CompanyInfoText = styled.div``