13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
import styled from '@emotion/styled';
|
|
|
|
export const editorStyleVars = {
|
|
stickyDistanceBottom: '100px',
|
|
};
|
|
|
|
export const EditorControlBar = styled.div`
|
|
z-index: 1;
|
|
position: sticky;
|
|
top: 0;
|
|
margin-bottom: ${editorStyleVars.stickyDistanceBottom};
|
|
`;
|