mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
27 lines
443 B
TypeScript
27 lines
443 B
TypeScript
import styled from "styled-components"
|
|
|
|
export const Wrapper = styled.div`
|
|
width: 100%;
|
|
padding: 100px 20px 20px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
`
|
|
|
|
export const Title = styled.h1`
|
|
margin: 0;
|
|
padding: 10px;
|
|
line-height: 2.5rem;
|
|
`
|
|
|
|
export const Text = styled.p`
|
|
margin: 0;
|
|
padding: 10px;
|
|
line-height: 2rem;
|
|
`
|
|
|
|
export const Spacer = styled.div`
|
|
height: 32px;
|
|
`
|