nicklima/strapi-blog-frontend-next

View on GitHub
components/Title/styled.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
50%
import styled from "styled-components"

export const Title = styled.h2`
  color: ${({ theme }) => theme.text};
  font-family: Staatliches;
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;

  @media screen and (min-width: 768px) {
    font-size: 80px;
  }

  @media screen and (min-width: 1024px) {
    font-size: 100px;
  }
`