mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-06 13:03:20 +02:00
9 lines
192 B
TypeScript
9 lines
192 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;
|
|
`;
|