2019-03-15 10:19:57 -04:00
|
|
|
import styled from '@emotion/styled';
|
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
|
|
|
`;
|