forked from LaconicNetwork/icns-frontend
17 lines
260 B
TypeScript
17 lines
260 B
TypeScript
// Styles
|
|
import styled from "styled-components";
|
|
|
|
export const LogoContainer = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 160px;
|
|
height: 80px;
|
|
|
|
margin-top: 80px;
|
|
margin-left: 80px;
|
|
`;
|