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.
17 lines
352 B
17 lines
352 B
import styled from 'styled-components/macro'
|
|
|
|
import { devices } from 'config'
|
|
|
|
export const BlockTitle = styled.h3`
|
|
font-weight: normal;
|
|
font-size: 20px;
|
|
line-height: 26px;
|
|
text-transform: uppercase;
|
|
|
|
@media ${devices.mobile} {
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
text-transform: none;
|
|
}
|
|
`
|
|
|