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.
37 lines
507 B
37 lines
507 B
import styled from 'styled-components/macro'
|
|
|
|
import { devices } from 'config/devices'
|
|
|
|
import {
|
|
Wrapper,
|
|
InfoItems,
|
|
Logo,
|
|
} from '../ProfileCard/styled'
|
|
|
|
export const Content = styled.main`
|
|
padding: 0 16px;
|
|
|
|
${Logo} {
|
|
background-color: transparent;
|
|
}
|
|
|
|
@media ${devices.laptop}{
|
|
${Wrapper} {
|
|
margin-top: 29px;
|
|
}
|
|
|
|
${InfoItems} {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
@media ${devices.tablet} {
|
|
padding: 0;
|
|
${Wrapper} {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
`
|
|
|