You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
434 B
25 lines
434 B
import styled from 'styled-components/macro'
|
|
|
|
export const Powered = styled.span`
|
|
display: block;
|
|
text-decoration: none;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
|
|
text-align: center;
|
|
letter-spacing: -0.32px;
|
|
|
|
color: #76ADFF;
|
|
`
|
|
|
|
export const Container = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
padding: 25px 5px 15px 5px;
|
|
|
|
.header__logo{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
`
|
|
|