2020-06-16 20:38:43 +00:00
|
|
|
import React from 'react';
|
|
|
|
import styled from 'styled-components';
|
2020-07-21 15:14:58 +00:00
|
|
|
import { prop, grays } from '../../theme';
|
2020-06-16 20:38:43 +00:00
|
|
|
|
2020-07-15 20:24:12 +00:00
|
|
|
|
2020-07-01 18:52:23 +00:00
|
|
|
const background = prop('MobilePanel.default.background');
|
2020-06-16 20:38:43 +00:00
|
|
|
const textColor = prop('primaryTextColor');
|
|
|
|
|
2020-07-20 21:51:42 +00:00
|
|
|
export default styled.div`
|
2020-06-16 20:38:43 +00:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
2020-07-15 20:24:12 +00:00
|
|
|
bottom: 0;
|
2020-06-16 20:38:43 +00:00
|
|
|
background: ${background};
|
|
|
|
color: ${textColor};
|
2020-07-21 15:14:58 +00:00
|
|
|
|
|
|
|
& > * + * { border-top: dashed 1px ${prop('Separator')} }
|
2020-06-16 20:38:43 +00:00
|
|
|
`;
|