21 lines
379 B
TypeScript
21 lines
379 B
TypeScript
import styled from 'styled-components'
|
|
|
|
export const FaqButtonView2 = styled.button`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: -46px;
|
|
margin-left: 444px;
|
|
width: 320px;
|
|
height: 45px;
|
|
cursor: pointer;
|
|
background: #254F7F;
|
|
border-radius: 8px;
|
|
border-style: none;
|
|
|
|
font-family: 'Poppins';
|
|
font-size: 90%;
|
|
|
|
color: #FFFFFF;
|
|
`
|