21 lines
339 B
JavaScript
21 lines
339 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const SubmitWrap = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
svg {
|
|
height: 25px;
|
|
color: #d6d6d6;
|
|
}
|
|
`;
|
|
|
|
export const SubmitText = styled.p`
|
|
margin-bottom: 0;
|
|
color: dimgrey;
|
|
margin-top: 8px;
|
|
`;
|