2019-03-15 10:19:57 -04:00
|
|
|
import styled from '@emotion/styled';
|
2020-03-24 09:46:47 -04:00
|
|
|
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`
|
2020-03-24 09:46:47 -04:00
|
|
|
z-index: ${zIndex.zIndex200};
|
2018-07-24 21:46:04 -04:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
margin-bottom: ${editorStyleVars.stickyDistanceBottom};
|
2018-08-07 14:46:54 -06:00
|
|
|
`;
|