2018-07-28 14:33:42 -06:00
|
|
|
import styled from 'react-emotion';
|
2018-07-24 21:46:04 -04:00
|
|
|
|
|
|
|
export const editorStyleVars = {
|
|
|
|
stickyDistanceBottom: '100px',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const EditorControlBar = styled.div`
|
|
|
|
z-index: 1;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
margin-bottom: ${editorStyleVars.stickyDistanceBottom};
|
2018-08-07 14:46:54 -06:00
|
|
|
`;
|