20 lines
332 B
JavaScript
20 lines
332 B
JavaScript
import styled from "styled-components";
|
|
|
|
const CompanyStyled = styled.div`
|
|
position: absolute;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: right;
|
|
align-items: flex-end;
|
|
width: 100%;
|
|
right: 16px;
|
|
bottom: 16px;
|
|
font-size: 10px;
|
|
p{
|
|
font-family: "Helvetica85";
|
|
}
|
|
`;
|
|
|
|
export default CompanyStyled;
|
|
|