24 lines
477 B
TypeScript
24 lines
477 B
TypeScript
import styled from 'styled-components'
|
|
|
|
export const LoginButtonView = styled.button`
|
|
width: 90%;
|
|
height:100%;
|
|
min-height: 4rem;
|
|
|
|
|
|
|
|
border-radius: 8px;
|
|
background: rgb(2,0,36);
|
|
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(37,79,127,1) 35%, rgba(136,136,136,1) 100%);
|
|
|
|
font-family: 'Nunito Sans';
|
|
font-weight: 700;
|
|
font-size: calc(99.98% + 10px);
|
|
line-height: 44px;
|
|
text-align: center;
|
|
border: none;
|
|
cursor: pointer;
|
|
|
|
color: #FFFFFF;
|
|
`
|