20 lines
335 B
React
20 lines
335 B
React
|
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: "HelveticaHeavy";
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default CompanyStyled;
|
||
|
|