mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-12-24 12:23:49 +01:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
|
import styled from 'styled-components';
|
||
|
import { times } from '../../size';
|
||
|
|
||
|
export const StyledFooter = styled.div`
|
||
|
height: ${times(10)};
|
||
|
width: 100%;
|
||
|
border: 1px solid black;
|
||
|
`;
|