13 lines
258 B
JavaScript
Raw Normal View History

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};
`;