|
|
|
|
@ -1,3 +1,5 @@ |
|
|
|
|
import { Link } from 'react-router-dom' |
|
|
|
|
|
|
|
|
|
import styled, { css } from 'styled-components/macro' |
|
|
|
|
|
|
|
|
|
import { isMobileDevice } from 'config/userAgent' |
|
|
|
|
@ -8,14 +10,16 @@ export const CompanyInfoWrapper = styled.div` |
|
|
|
|
font-weight: 400; |
|
|
|
|
font-size: 12px; |
|
|
|
|
line-height: 15px; |
|
|
|
|
color: rgba(255, 255, 255, 0.6); |
|
|
|
|
color: rgba(255, 255, 255, 0.5); |
|
|
|
|
|
|
|
|
|
${isMobileDevice ? css` |
|
|
|
|
margin-top: 20px; |
|
|
|
|
` : ''}
|
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const CompanyName = styled.div` |
|
|
|
|
color: rgba(255, 255, 255, 0.8); |
|
|
|
|
` |
|
|
|
|
export const CompanyInfoText = styled.div`` |
|
|
|
|
|
|
|
|
|
export const CompanyInfoLink = styled(Link)` |
|
|
|
|
color: rgba(255, 255, 255, 0.7); |
|
|
|
|
text-decoration: underline; |
|
|
|
|
` |
|
|
|
|
|