37 lines
546 B
TypeScript
37 lines
546 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const FaqView = styled.main`
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
h1 {
|
|
font-weight: 700;
|
|
font-size: calc(90% + 2rem);
|
|
line-height: 72px;
|
|
text-align: center;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
p {
|
|
font-weight: 400;
|
|
font-size: 99.98%;
|
|
line-height: 21px;
|
|
text-align: center;
|
|
letter-spacing: 0.5px;
|
|
|
|
color: #AAAAAA;
|
|
}
|
|
|
|
.CommonQuestionsSection {
|
|
width: 80%;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #DDDDDD;
|
|
}
|
|
`
|