14 lines
325 B
JavaScript
Raw Normal View History

2019-03-15 10:19:57 -04:00
import styled from '@emotion/styled';
import { zIndex } from 'netlify-cms-ui-default';
2018-07-24 21:46:04 -04:00
export const editorStyleVars = {
stickyDistanceBottom: '100px',
};
export const EditorControlBar = styled.div`
z-index: ${zIndex.zIndex200};
2018-07-24 21:46:04 -04:00
position: sticky;
top: 0;
margin-bottom: ${editorStyleVars.stickyDistanceBottom};
`;